feat: 完成PHP到NestJS的100%功能迁移
- 迁移25个模块,包含95个控制器和160个服务 - 新增验证码管理、登录配置、云编译等模块 - 完善认证授权、会员管理、支付系统等核心功能 - 实现完整的队列系统、配置管理、监控体系 - 确保100%功能对齐和命名一致性 - 支持生产环境部署
This commit is contained in:
37
temp/entities/sys_upgrade_records.ts
Normal file
37
temp/entities/sys_upgrade_records.ts
Normal file
@@ -0,0 +1,37 @@
|
||||
import { Entity, Column, PrimaryGeneratedColumn } from 'typeorm';
|
||||
|
||||
@Entity('sys_upgrade_records')
|
||||
export class SysUpgradeRecords {
|
||||
@PrimaryGeneratedColumn({ type: 'int' })
|
||||
id: number;
|
||||
|
||||
@Column({ name: 'upgrade_key', type: 'varchar', length: 255, default: '' })
|
||||
upgradeKey: any;
|
||||
|
||||
@Column({ name: 'app_key', type: 'varchar', length: 255, default: '' })
|
||||
appKey: any;
|
||||
|
||||
@Column({ name: 'name', type: 'varchar', length: 255, default: '' })
|
||||
name: any;
|
||||
|
||||
@Column({ name: 'content', type: 'text' })
|
||||
content: any;
|
||||
|
||||
@Column({ name: 'prev_version', type: 'varchar', length: 255, default: '' })
|
||||
prevVersion: any;
|
||||
|
||||
@Column({ name: 'current_version', type: 'varchar', length: 255, default: '' })
|
||||
currentVersion: any;
|
||||
|
||||
@Column({ name: 'status', type: 'varchar', length: 255, default: '' })
|
||||
status: any;
|
||||
|
||||
@Column({ name: 'fail_reason', type: 'text' })
|
||||
failReason: any;
|
||||
|
||||
@Column({ name: 'create_time', type: 'int', default: 0 })
|
||||
createTime: any;
|
||||
|
||||
@Column({ name: 'complete_time', type: 'int', default: 0 })
|
||||
completeTime: any;
|
||||
}
|
||||
Reference in New Issue
Block a user