Newer
Older
xc-business-system / src / views / resource / customer / situationReport / customer-report.ts
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>
}