// 列表查询参数类型 export interface IListQuery { orderCode: string // 委托书编号 customerNo: string // 委托方代码 customerName: string // 委托方名称 deliverer: string // 送样人 offset: number limit: number } // 列表查询参数类型 export interface IList { id: string // 主键 orderCode: string // 委托书编号 customerNo: string // 委托方代码 customerName: string // 委托方名称 deliverer: string // 送样人 delivererTel: string // 联系方式 sampleCount: string // 样品数量 isUrgent: string // 是否加急 createTime: string // 创建时间 postedPrice: number // 标价(单位分) suggestedDiscount: string // 建议折扣-单位% suggestedPrice: number // 建议价格-单位分 extraCharge: number // 附加费用-单位分 extraChargeIllustration: string // 附加费用说明 totalSettlement: number // 总计结算费用-单位分 } // 字典 export interface dictType { id: string name: string value: string | number label?: string // 基本信息添加的信息名称 }