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
+14
View File
@@ -0,0 +1,14 @@
export interface IConfigGroup {
/** ID */
id?: number;
/** 标题 */
title?: string;
/** 键 */
key?: string;
/** 描述 */
remark?: string;
/** 创建时间 */
created_at?: Date;
/** 更新时间 */
updated_at?: Date;
}