Files
pqs-9100_client/frontend/src/api/system/base/interface/index.ts

18 lines
565 B
TypeScript
Raw Normal View History

2024-11-19 16:30:03 +08:00
// 检测配置表模块
export namespace Base {
/**
*
*/
export interface ResTestConfig {
id: string; //系统配置表Id
autoGenerate:number;//检测报告是否自动生成0 否1是
maxTime:number;//最大复检次数默认3次
state: number; //状态
createBy?: string| null; //创建用户
createTime?: string| null; //创建时间
updateBy?: string| null; //更新用户
updateTime?: string| null; //更新时间
}
}