This commit is contained in:
vastxie
2024-07-07 13:09:08 +08:00
parent 086e5aed3c
commit 4fef3663e4
1131 changed files with 11143 additions and 10769 deletions

View File

@@ -10,22 +10,14 @@ var __metadata = (this && this.__metadata) || function (k, v) {
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.AppCatsEntity = void 0;
const typeorm_1 = require("typeorm");
const baseEntity_1 = require("../../common/entity/baseEntity");
const typeorm_1 = require("typeorm");
let AppCatsEntity = class AppCatsEntity extends baseEntity_1.BaseEntity {
};
__decorate([
(0, typeorm_1.Column)({ unique: true, comment: 'App分类名称' }),
__metadata("design:type", String)
], AppCatsEntity.prototype, "name", void 0);
__decorate([
(0, typeorm_1.Column)({ comment: 'App分类描述信息' }),
__metadata("design:type", String)
], AppCatsEntity.prototype, "des", void 0);
__decorate([
(0, typeorm_1.Column)({ comment: 'App分类封面图片', nullable: true }),
__metadata("design:type", String)
], AppCatsEntity.prototype, "coverImg", void 0);
__decorate([
(0, typeorm_1.Column)({ comment: 'App分类排序、数字越大越靠前', default: 100 }),
__metadata("design:type", Number)