first commit

This commit is contained in:
liu
2026-05-30 17:38:49 +08:00
commit 2bcb722448
413 changed files with 43656 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;
}