first commit

This commit is contained in:
liu
2026-07-13 15:23:29 +08:00
commit 50885a98c8
473 changed files with 33772 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
export interface IDict {
/** ID */
id?: number;
/** 字典名称 */
name?: string;
/** 字典编码 */
code?: string;
/** 字典描述 */
describe?: string;
/** 状态:0正常 1停用 */
status?: number;
/** 排序 */
sort?: number;
/** 创建时间 */
created_at?: string;
/** 更新时间 */
updated_at?: string;
}