Files
leaudit-platform-frontend/app/models/evaluation_point_groups.ts
T
2025-04-09 01:34:14 +08:00

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 };