基础组件完善

This commit is contained in:
2025-04-09 01:34:14 +08:00
parent e421bcd44b
commit ebdf97aebf
11 changed files with 2673 additions and 1692 deletions
+15
View File
@@ -0,0 +1,15 @@
/**
* 评查点分组表
*/
interface EvaluationPointGroup {
id: number; // 主键,自增
pid: number | null; // 所属分组ID,外键引用本表,可为空
code: string; // 分组编码,唯一且非空
name: string; // 分组名称,非空
description?: string; // 分组描述,可为空
is_enabled: boolean; // 是否启用,默认true
created_at: string; // 创建时间,带时区,默认当前时间
updated_at: string; // 更新时间,带时区,默认当前时间
}
export type { EvaluationPointGroup };