保誠-保戶業務員媒合平台
Tomas
2022-01-13 66a8dd0cfd0122aee97a6f6859407630d6b4d384
PAMapp/shared/models/appointment.model.ts
@@ -1,3 +1,5 @@
import { ContactStatus } from "./enum/contact-status";
export interface AppointmentLog {
    id              : number;
    createdDate     : string;
@@ -130,3 +132,20 @@
  content: string;
  id     : number;
}
export interface ToDoneAppointment {
    appointmentId         : number;
    contactStatus         : ContactStatus;
    planCode              : string;
    policyEntryDate       : string;
    policyholderIdentityId: string;
}
export interface ToCloseAppointment {
  appointmentId    : number;
  closedOtherReason: string;
  closedReason     : string;
  contactStatus    : ContactStatus;
  remark           : string;
}