feat: 完成PHP到NestJS的100%功能迁移
- 迁移25个模块,包含95个控制器和160个服务 - 新增验证码管理、登录配置、云编译等模块 - 完善认证授权、会员管理、支付系统等核心功能 - 实现完整的队列系统、配置管理、监控体系 - 确保100%功能对齐和命名一致性 - 支持生产环境部署
This commit is contained in:
49
temp/entities/diy_form_fields.ts
Normal file
49
temp/entities/diy_form_fields.ts
Normal file
@@ -0,0 +1,49 @@
|
||||
import { Entity, Column, PrimaryGeneratedColumn } from 'typeorm';
|
||||
|
||||
@Entity('diy_form_fields')
|
||||
export class DiyFormFields {
|
||||
@PrimaryGeneratedColumn({ type: 'int' })
|
||||
id: number;
|
||||
|
||||
@Column({ name: 'site_id', type: 'int', default: 0 })
|
||||
siteId: any;
|
||||
|
||||
@Column({ name: 'form_id', type: 'int', default: 0 })
|
||||
formId: any;
|
||||
|
||||
@Column({ name: 'field_key', type: 'varchar', length: 255, default: '' })
|
||||
fieldKey: any;
|
||||
|
||||
@Column({ name: 'field_type', type: 'varchar', length: 255, default: '' })
|
||||
fieldType: any;
|
||||
|
||||
@Column({ name: 'field_name', type: 'varchar', length: 255, default: '' })
|
||||
fieldName: any;
|
||||
|
||||
@Column({ name: 'field_remark', type: 'varchar', length: 255, default: '' })
|
||||
fieldRemark: any;
|
||||
|
||||
@Column({ name: 'field_default', type: 'text' })
|
||||
fieldDefault: any;
|
||||
|
||||
@Column({ name: 'write_num', type: 'int', default: 0 })
|
||||
writeNum: any;
|
||||
|
||||
@Column({ name: 'field_required', type: 'int', default: 0 })
|
||||
fieldRequired: any;
|
||||
|
||||
@Column({ name: 'field_hidden', type: 'int', default: 0 })
|
||||
fieldHidden: any;
|
||||
|
||||
@Column({ name: 'field_unique', type: 'int', default: 0 })
|
||||
fieldUnique: any;
|
||||
|
||||
@Column({ name: 'privacy_protection', type: 'int', default: 0 })
|
||||
privacyProtection: any;
|
||||
|
||||
@Column({ name: 'create_time', type: 'int', default: 0 })
|
||||
createTime: any;
|
||||
|
||||
@Column({ name: 'update_time', type: 'int', default: 0 })
|
||||
updateTime: any;
|
||||
}
|
||||
Reference in New Issue
Block a user