74 lines
3.1 KiB
JavaScript
74 lines
3.1 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.DailyMeetingModel = 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");
|
|
const api_optional_decorator_1 = require("../app/common/decorator/api_optional.decorator");
|
|
let DailyMeetingModel = class DailyMeetingModel extends _base_model_1.BaseModel {
|
|
title;
|
|
description;
|
|
liveUrl;
|
|
remark;
|
|
static _OPENAPI_METADATA_FACTORY() {
|
|
return { title: { required: true, type: () => String }, description: { required: true, type: () => String }, liveUrl: { required: true, type: () => String }, remark: { required: false, type: () => String } };
|
|
}
|
|
};
|
|
exports.DailyMeetingModel = DailyMeetingModel;
|
|
__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)
|
|
], DailyMeetingModel.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)
|
|
], DailyMeetingModel.prototype, "description", void 0);
|
|
__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)
|
|
], DailyMeetingModel.prototype, "liveUrl", void 0);
|
|
__decorate([
|
|
(0, api_optional_decorator_1.ApiOptional)({ description: '备注', nullable: true }),
|
|
(0, class_validator_1.IsString)(),
|
|
(0, typeorm_1.Column)({
|
|
type: 'varchar',
|
|
comment: '备注',
|
|
nullable: true,
|
|
}),
|
|
__metadata("design:type", String)
|
|
], DailyMeetingModel.prototype, "remark", void 0);
|
|
exports.DailyMeetingModel = DailyMeetingModel = __decorate([
|
|
(0, typeorm_1.Entity)({
|
|
comment: '每日会议',
|
|
})
|
|
], DailyMeetingModel);
|
|
//# sourceMappingURL=daily_meeting.model.js.map
|