保誠-保戶業務員媒合平台
Mila
2022-01-04 5e5dd294d6f7b90940ca9e117c4254ab413b4ad8
PAMapp/shared/models/client.model.ts
@@ -1,22 +1,29 @@
export interface ClientInfo {
  age               : string,
  agentNo           : string,
  appointmentDate   : string,
  communicateStatus : string,
  consultantReadTime: string,
  consultantViewTime: string,
  contactTime       : string,
  contactType       : string,
  customerId        : number,
  email             : string,
  gender            : string,
  hopeContactTime   : string,
  id                : number,
  job               : string,
  lastModifiedDate  : string,
  name              : string,
  otherRequirement  : string,
  phone             : string,
  requirement       : string,
  satisfactionScore : number
  age                : string,
  agentNo            : string,
  appointmentDate    : string,
  communicateStatus  : string,
  consultantReadTime : string,
  consultantViewTime : string,
  contactTime        : string,
  contactType        : string,
  customerId         : number,
  email              : string,
  gender             : string,
  hopeContactTime    : string,
  id                 : number,
  job                : string,
  lastModifiedDate   : string,
  name               : string,
  otherRequirement   : string,
  phone              : string,
  requirement        : string,
  satisfactionScore  : number,
  appointmentMemoList: AppointmentMemoInfo[]
}
export interface AppointmentMemoInfo {
  appointmentId: number,
  content: string,
  id: number
}