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

This commit is contained in:
2026-07-01 17:55:56 +08:00
parent f1c672be1f
commit 2a2d18a648
+15
View File
@@ -0,0 +1,15 @@
import { Column, Index, Entity } from 'typeorm';
import { BaseEntity } from '../base';
/**
* 系统配置
*/
@Entity('base_sys_conf')
export class BaseSysConfEntity extends BaseEntity {
@Index({ unique: true })
@Column({ comment: '配置键' })
cKey: string;
@Column({ comment: '配置值' })
cValue: string;
}