Newer
Older
xc-business-system / src / views / resource / customer / situationReport / customer-report.ts
dutingting on 3 Jan 974 bytes 需求开发+10
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
  questionnaireId?: string // 委托方满意度调查表id
}

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
  averageScore: string // 平均分
  totalScore: string // 总分
  rate: string // 满意率
  suggestId?: string // 委托方意见登记表id
}