// 请求参数
export interface IListQuery {
interchangeNo: string // 交接单编号
orderNo: string // 任务单编号
customerName: string // 委托方名称
deliverer: string // 送样人
offset: number
limit: number
}
// 表格
export interface IList {
id: string // 主键
interchangeCode: string // 交接单编号
OrderCode: string // 任务单编号
customerName: string // 委托方名称
deliverer: string // 送检人
createUserName: string // 创建人
createTime: string // 创建时间
}
// 详情表单
export interface IForm {
interchangeNo: string // 交接单编号
createUserId: string // 创建人id
createUserName: string // 创建人名称
createTime: string // 创建时间
orderNo: string // 任务单编号
orderId: string // 任务单编号
deliverer: string // 送检人
customerId: string // 委托方id
customerNo: string // 委托方代码
customerName: string // 委托方名称
delivererTel?: string // 委托方电话
requireOverTime: string // 要求检完时间
customerAddress: string // 委托方地址
isUrgent: string // 是否加急
maintainMajor: string // 检修专业
}