// 列表查询
export interface IListQuery {
applyName: string // 申请人名字
applyTimeEnd: string // 申请时间结束
applyTimeStart: string // 申请时间开始
approvalStatus: string // 审批状态类型code
customerName: string // 委托方名称
formId: string // 表单id
siteExecutiveNo: string // 现场检测编号
limit: number
offset: number
}
// 表格数据
export interface IList {
id: string // 主键
siteExecutiveNo: string // 现场检测编号
siteExecutiveName: string // 审批名称
customerName: string // 委托方名称
applyName: string // 申请人
applyTime: string // 申请时间
approvalStatusName: string // 审批状态
processId: string // 流程实例id
taskId: string // 任务id-审批时使用
}
export interface IForm {
labCode: string // 实验室代码
groupCode: string // 组别代码
siteExecutiveNo: string // 现场检测编号(审批编号)
siteExecutiveName: string // 现场检测名字(审批名称)
applyId: string // 申请人id
applyName: string // 申请人
applyPersonName: string // 申请人名称
applyTime: string // 申请时间
customerId: string // 委托方id
customerNo: string // 委托方编号
customerName: string // 委托方名称
contacts: string // 联系人
mobile: string // 委托方电话
address: string // 委托方地址
executiveItem: string // 现场测试、校准或检定项目
executiveAddress: string // 检测地址
executiveEnvironment: string // 现场环境条件
remark: string // 备注
processId: string // 流程实例id
}