Files
2026-07-13 15:23:29 +08:00

15 lines
245 B
TypeScript

export interface IConfigGroup {
/** ID */
id?: number;
/** 标题 */
title?: string;
/** 键 */
key?: string;
/** 描述 */
remark?: string;
/** 创建时间 */
created_at?: Date;
/** 更新时间 */
updated_at?: Date;
}