1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
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;
| }
|
|