feat: 修复产品与站点同步诸多问题 #39
|
|
@ -34,6 +34,12 @@ export class DictItem {
|
|||
@Column({ comment: '字典唯一标识名称' })
|
||||
name: string;
|
||||
|
||||
@Column({ nullable: true, comment: '简称' })
|
||||
shortName: string;
|
||||
|
||||
@Column({ nullable: true, comment: '字典项描述' })
|
||||
description?: string
|
||||
|
||||
// 字典项值
|
||||
@Column({ nullable: true, comment: '字典项值' })
|
||||
value?: string;
|
||||
|
|
@ -41,9 +47,6 @@ export class DictItem {
|
|||
@Column({ nullable: true, comment: '图片' })
|
||||
image: string;
|
||||
|
||||
@Column({ nullable: true, comment: '简称' })
|
||||
shortName: string;
|
||||
|
||||
// 排序
|
||||
@Column({ default: 0, comment: '排序' })
|
||||
sort: number;
|
||||
|
|
|
|||
Loading…
Reference in New Issue