export interface IListQuery { reportNo: string createUserName: string createTimeStart: string createTimeEnd: string 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> }