export interface IListQuery { reportNo: string createUserName: string createTimeStart: string createTimeEnd: string draft: string // 草稿箱1全部2 offset: number limit: number sort?: string order?: string } export interface ICustomerSatisfaction { id: string customerName: string labCode?: string proposeTime?: string score?: string } export interface ISituationReportInfo { id?: string reportNo: string reportName?: string labCode: string labCodeName?: string createUserId?: string createUserName?: string createTime?: string customerName: string customerAdvice?: string customerAdviceHandle?: string conclusion: string customerList: Array<ICustomerSatisfaction> draft: string // 是否是草稿箱 1/2 }