feat: 完成PHP到NestJS的100%功能迁移
- 迁移25个模块,包含95个控制器和160个服务 - 新增验证码管理、登录配置、云编译等模块 - 完善认证授权、会员管理、支付系统等核心功能 - 实现完整的队列系统、配置管理、监控体系 - 确保100%功能对齐和命名一致性 - 支持生产环境部署
This commit is contained in:
26
wwjcloud/src/common/aliapp/entities/Aliapp.ts
Normal file
26
wwjcloud/src/common/aliapp/entities/Aliapp.ts
Normal file
@@ -0,0 +1,26 @@
|
||||
import { Entity, PrimaryGeneratedColumn, Column } from 'typeorm';
|
||||
import { BaseEntity } from '../../../core/base/BaseEntity';
|
||||
|
||||
@Entity('aliapp')
|
||||
export class Aliapp extends BaseEntity {
|
||||
@PrimaryGeneratedColumn({ name: 'aliapp_id' })
|
||||
aliapp_id: number;
|
||||
|
||||
@Column({ name: 'site_id', type: 'int', default: 0 })
|
||||
declare site_id: number;
|
||||
|
||||
@Column({ name: 'aliapp_name', type: 'varchar', length: 255, default: '' })
|
||||
aliapp_name: string;
|
||||
|
||||
@Column({ name: 'aliapp_title', type: 'varchar', length: 255, default: '' })
|
||||
aliapp_title: string;
|
||||
|
||||
@Column({ name: 'appid', type: 'varchar', length: 255, default: '' })
|
||||
appid: string;
|
||||
|
||||
@Column({ name: 'app_secret', type: 'varchar', length: 255, default: '' })
|
||||
app_secret: string;
|
||||
|
||||
@Column({ name: 'aliapp_status', type: 'tinyint', default: 0 })
|
||||
aliapp_status: number;
|
||||
}
|
||||
Reference in New Issue
Block a user