feat(entities): 集成 MikroORM 并配置实体文件规则

- 添加 MikroORM CLI 和实体生成器依赖包
- 配置 ESLint 规则以适配 MikroORM 生成的实体文件
- 添加 mikro-orm 和 generate-entities 命令脚本
- 更新 pnpm 锁定文件包含新依赖项
- 移除手动创建的 meeting-user 实体文件,改用 ORM 自动生成
This commit is contained in:
2026-03-14 13:02:51 +08:00
parent b4ef771a39
commit bd97919256
111 changed files with 4402 additions and 16 deletions

View File

@ -1,14 +0,0 @@
import { Entity, PrimaryKey, Property, Unique } from '@mikro-orm/decorators/legacy';
@Entity({ tableName: 'meeting_user' })
export class MeetingUser {
@PrimaryKey({ type: 'number' })
public id!: number;
@Unique()
@Property({ type: 'bigint', fieldName: 'long_user_Id' })
public longUserId!: number;
@Property({ type: 'date' })
public createdAt: Date = new Date();
}