保誠-保戶業務員媒合平台
Tomas
2022-02-08 8fa88b545738ee12dadf18431f78788d1e104fa7
PAMapp/shared/models/reviews.model.ts
@@ -2,3 +2,34 @@
  appointmentId: number,
  score        : number,
}
export interface NotificationList {
  id: number;
  /** 標題 */
  title: string;
  /** 通知內容 */
  content: string;
  /** ACTIVITY(個人活動通知)、SYSTEM(系統通知) */
  notificationType: string;
  /** CUSTOMER(客戶)、CONSULTANT(顧問) */
  ownerRole: string;
  /** 登入者id */
  ownerId: number
  createdDate: string;
  /** 已讀時間 */
  readDate: string;
}
export interface UserReviewPlatformParams {
  appointmentId: number;
  score        : number;
}
export interface UserReviewPlatformRes {
  agentNo?     : string;
  appointmentId: number;
  customerId   : string;
  id           : number,
  score        : string;
  type         : 'APPOINTMENT' | 'SYSTEM';
}