export interface IListQuery { formNo: string customerName: string customerDeptName: string createUserName: string createTimeStart: string createTimeEnd: string approvalStatus: string handleStatus: string labCode: string formId: string offset: number limit: number sort?: string order?: string } export interface IHandleListQuery { formNo: string customerName: string customerDeptName: string createUserName: string createTimeStart: string createTimeEnd: string handleStatus: string labCode: string offset: number limit: number sort?: string order?: string } export interface ICustomerSuggestInfo { id?: string formNo: string formName: string customerId: string customerName?: string customerDeptId: string customerDeptName: string customerDeptPid?: string labCode: string labCodeName?: string approvalStatus?: string approvalStatusName?: string handleStatus: string handleStatusName?: string acceptanceUserId?: string // 受理人 acceptanceUserName?: string acceptanceTime?: string appealUserId: string // 申诉人 appealUserName: string processId: string taskId: string suggestContent: string reasonAndConclusion: string remark: string effectRemark?: string decisionItem?: string createUserId?: string createUserName?: string createTime?: string }