// 证书打印查询 export interface IListQuery { approvalStatus: string // 审批状态类型code,导出接口不用传 certificateReportNo: string // 证书报告编号 certificateReportName: string // 证书报告名称 customerId: string // 委托方id customerName: string // 委托方 deptName: string // 使用部门 sampleNo: string // 受检设备编号 sampleName: string // 受检设备名称 model: string // 规格型号 manufactureNo: string // 出厂编号 measureCategory: string // 检校类别(字典code) traceDateStart: string // 测试、校准或检定日期开始 traceDateEnd: string // 测试、校准或检定日期结束 conclusion: string // 结论(所检项目合格/不合格/除*外其余所检项目合格,用户手选) measureValidDateStart: string // 检定有效期开始 measureValidDateEnd: string // 检定有效期结束 labCode: string // 实验室(字典code) groupCode: string // 部门(字典code) createUserName: string // 检定员 formId: string // 表单id printStatus: string // 打印状态(未打印传1,其他状态不传) offset: number limit: number } export interface IListQueryCert extends IListQuery { customerId: string } // 证书打印列表 export interface IList { id: string // 主键 certificateName: string // 证书报告名称 certificateNo: string // 证书报告编号 orderNo: string // 任务单编号 customerName: string // 委托方 sampleNo: string // 被检设备统一编号 sampleName: string // 被检设备名称 createTime: string // 创建时间 printStatusName: string // 打印状态 taskId: string printFileName: string // 证书文件名称 certificateFile: string // 证书文件 processId: string approvalStatusName: string // 审批状态名称 }