refactor(entities): 移除多个实体类定义

- 移除了 IcrBookarticle 实体类及其数据库表结构定义
- 移除了 IcrBookassigntask 实体类及其数据库表结构定义
- 移除了 IcrBookcatalog 实体类及其数据库表结构定义
- 移除了 IcrBookcategory 实体类及其数据库表结构定义
- 移除了 IcrBookpage 实体类及其数据库表结构定义
- 移除了 IcrBookpagearea 实体类及其数据库表结构定义
- 移除了 IcrBookpagequestion 实体类及其数据库表结构定义
- 移除了 IcrBooks 实体类及其数据库表结构定义
- 移除了 IcrClasscourse 实体类及其数据库表结构定义
- 移除了 IcrClassdatacollect 实体类及其数据库表结构定义
- 移除了 IcrClassrelationtemplate 实体类及其数据库表结构定义
- 移除了 IcrClassrelationtemplatedetail 实体类及其数据库表结构定义
- 移除了 IcrClassroomansweringresult 实体类及其数据库表结构定义
- 移除了 IcrClassroomcourse 实体类及其数据库表结构定义
- 移除了 IcrClassroomcourseplan 实体类及其数据库表结构定义
- 移除了 IcrClassroomcoursequestion 实体类及其数据库表结构定义
- 移除了 IcrClassroomquestion 实体类及其数据库表结构定义
- 移除了 IcrClassroomquestionpackage 实体类及其数据库表结构定义
- 移除了 IcrClassroomquestionpackageitem 实体类及其数据库表结构定义
This commit is contained in:
2026-03-14 14:24:39 +08:00
parent 0150dc3ccb
commit 36ae77d9f0
108 changed files with 6 additions and 4282 deletions

View File

@ -1,32 +0,0 @@
import { PrimaryKeyProp, defineEntity, p } from '@mikro-orm/core';
export class ScsCoursepoint {
[PrimaryKeyProp]?: 'Id';
Id!: bigint;
CourseId!: bigint;
Content?: string;
TimePoint!: number;
Revision!: number;
CreatedBy?: bigint;
CreatedTime!: Date;
UpdatedBy?: bigint;
UpdatedTime?: Date;
IsDeleted!: unknown;
}
export const ScsCoursepointSchema = defineEntity({
class: ScsCoursepoint,
comment: '课程知识点',
properties: {
Id: p.bigint().primary().name('Id').unsigned(false).autoincrement(false).comment('主键Id'),
CourseId: p.bigint().name('CourseId').comment('课程id'),
Content: p.string().name('Content').length(500).nullable().comment('内容'),
TimePoint: p.integer().name('TimePoint').comment('时间点'),
Revision: p.integer().name('Revision').comment('乐观锁'),
CreatedBy: p.bigint().name('CreatedBy').nullable().comment('创建者用户Id'),
CreatedTime: p.datetime().name('CreatedTime').length(3).comment('创建时间'),
UpdatedBy: p.bigint().name('UpdatedBy').nullable().comment('修改者用户Id'),
UpdatedTime: p.datetime().name('UpdatedTime').length(3).nullable().comment('修改时间'),
IsDeleted: p.array().name('IsDeleted').comment('是否删除'),
},
});