feat: 修复产品与站点同步诸多问题 #39

Merged
zksu merged 4 commits from zksu/API:main into main 2026-01-04 12:48:57 +00:00
1 changed files with 7 additions and 4 deletions
Showing only changes of commit 58ae594d5e - Show all commits

View File

@ -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;