chore: src/modules/base/entity/sys/param.ts

This commit is contained in:
2026-07-01 17:56:00 +08:00
parent ba441d920f
commit ca7c66ca99
+27
View File
@@ -0,0 +1,27 @@
import { BaseEntity } from '../base';
import { Column, Index, Entity } from 'typeorm';
/**
* 参数配置
*/
@Entity('base_sys_param')
export class BaseSysParamEntity extends BaseEntity {
@Index({ unique: true })
@Column({ comment: '键' })
keyName: string;
@Column({ comment: '名称' })
name: string;
@Column({ comment: '数据', type: 'text' })
data: string;
@Column({
comment: '数据类型 0-字符串 1-富文本 2-文件 ',
default: 0,
})
dataType: number;
@Column({ comment: '备注', nullable: true })
remark: string;
}