16 lines
636 B
TypeScript
16 lines
636 B
TypeScript
/**
|
|
* 评查点分组表
|
|
*/
|
|
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 };
|