保誠-保戶業務員媒合平台
Jack
2022-01-20 387523be22e05114d850d2e0fe73c368f471e3d7
PAMapp/shared/models/appointment.model.ts
@@ -11,12 +11,13 @@
    agentName       : string;
    customerName    : string;
}
export interface Appointment {
  age                : string;
  agentNo            : string;
  appointmentDate    : string;
  appointmentMemoList: AppointmentMemoInfo[]
  communicateStatus  : string;
  communicateStatus  : ContactStatus;
  consultantReadTime : string;
  consultantViewTime : string;
  contactTime        : string;
@@ -42,6 +43,7 @@
  content      : string;
  id           : number;
}
export interface InterviewRecord {
  appointmentId   : number;
  content         : string;
@@ -54,13 +56,14 @@
}
export interface NoticeLogs {
  id: number,
  phone: string,
  email: string,
  appointmentId: number,
  content: string,
  createdDate: string
  content      : string,
  createdDate  : string
  email        : string,
  id           : number,
  phone        : string,
}
export interface AppointmentWithConsultantInfo extends Appointment {
  consultantAvatar    : string;
  consultantExpertList: string[];
@@ -68,6 +71,7 @@
  contactStatus       : string;
  updateTime          : string;
}
export interface AppointmentParams {
  age            : string;
  agentNo        : string;
@@ -79,6 +83,7 @@
  phone          : string;
  requirement    : string;
}
export interface EditAppointmentParams {
  age             : string;
  contactType     : string;
@@ -91,6 +96,7 @@
  phone           : string;
  requirement     : string;
}
export interface AppointmentRequests {
  age            : string;
  agentNo        : string;
@@ -102,11 +108,11 @@
  phone          : string;
  requirement    : string[];
}
export interface ContactTime {
  selectTimesOptions: string[];
  selectWeekOptions : string[];
}
export interface createdMemoInfo {
  appointmentId: number;
@@ -135,6 +141,16 @@
  remark?          : string;
}
export interface NoticeLogs {
  appointmentId: number;
  content      : string;
  createdDate  : string;
  email        : string;
  id           : number;
  interviewDate: string;
  phone        : string;
}
export interface ToInformAppointment {
  appointmentId: number;
  email        : string;
@@ -152,4 +168,4 @@
export interface UpdateInterviewRecordInfo {
  /** interviewRecord id */
  id: number;
}
}