79 lines
3.3 KiB
JavaScript
79 lines
3.3 KiB
JavaScript
"use strict";
|
|
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
};
|
|
var __metadata = (this && this.__metadata) || function (k, v) {
|
|
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
};
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.DocumentModel = exports.DocumentType = void 0;
|
|
const openapi = require("@nestjs/swagger");
|
|
const typeorm_1 = require("typeorm");
|
|
const _base_model_1 = require("./_base_model");
|
|
const swagger_1 = require("@nestjs/swagger");
|
|
const class_validator_1 = require("class-validator");
|
|
var DocumentType;
|
|
(function (DocumentType) {
|
|
DocumentType[DocumentType["ServiceAgreement"] = 1] = "ServiceAgreement";
|
|
DocumentType[DocumentType["PrivacyPolicy"] = 2] = "PrivacyPolicy";
|
|
})(DocumentType || (exports.DocumentType = DocumentType = {}));
|
|
let DocumentModel = class DocumentModel extends _base_model_1.BaseModel {
|
|
title;
|
|
content;
|
|
publishTime;
|
|
type;
|
|
static _OPENAPI_METADATA_FACTORY() {
|
|
return { title: { required: true, type: () => String }, content: { required: true, type: () => String }, publishTime: { required: true, type: () => String }, type: { required: true, enum: require("./document.model").DocumentType } };
|
|
}
|
|
};
|
|
exports.DocumentModel = DocumentModel;
|
|
__decorate([
|
|
(0, swagger_1.ApiProperty)({ description: '标题' }),
|
|
(0, class_validator_1.IsString)(),
|
|
(0, class_validator_1.IsNotEmpty)(),
|
|
(0, typeorm_1.Column)({
|
|
type: 'varchar',
|
|
comment: '标题',
|
|
}),
|
|
__metadata("design:type", String)
|
|
], DocumentModel.prototype, "title", void 0);
|
|
__decorate([
|
|
(0, swagger_1.ApiProperty)({ description: '文档库内容' }),
|
|
(0, class_validator_1.IsString)(),
|
|
(0, class_validator_1.IsNotEmpty)(),
|
|
(0, typeorm_1.Column)({
|
|
type: 'text',
|
|
comment: '文档库内容',
|
|
}),
|
|
__metadata("design:type", String)
|
|
], DocumentModel.prototype, "content", void 0);
|
|
__decorate([
|
|
(0, swagger_1.ApiProperty)({ description: '发布时间' }),
|
|
(0, class_validator_1.IsNotEmpty)(),
|
|
(0, typeorm_1.Column)({
|
|
type: 'datetime',
|
|
comment: '发布时间',
|
|
}),
|
|
__metadata("design:type", String)
|
|
], DocumentModel.prototype, "publishTime", void 0);
|
|
__decorate([
|
|
(0, swagger_1.ApiProperty)({
|
|
description: '类型:1=服务协议,2=隐私协议',
|
|
enum: DocumentType,
|
|
}),
|
|
(0, class_validator_1.IsNotEmpty)(),
|
|
(0, typeorm_1.Column)({
|
|
type: 'int',
|
|
comment: '类型:1=服务协议,2=隐私协议',
|
|
}),
|
|
__metadata("design:type", Number)
|
|
], DocumentModel.prototype, "type", void 0);
|
|
exports.DocumentModel = DocumentModel = __decorate([
|
|
(0, typeorm_1.Entity)({
|
|
comment: '文档库',
|
|
})
|
|
], DocumentModel);
|
|
//# sourceMappingURL=document.model.js.map
|