保誠-保戶業務員媒合平台
wayne
2022-02-17 34b08e1c461f5e08675fcff95525956d7c4bef11
PAMapp/shared/models/reviews.model.ts
@@ -1,6 +1,8 @@
export interface UserReviewsConsultantsParams{
import { SatisfactionType } from './enum/satisfaction-type';
export interface UserReviewParams{
  appointmentId: number,
  score        : number,
  type         : SatisfactionType,
}
export interface NotificationList {
@@ -18,4 +20,13 @@
  createdDate: string;
  /** 已讀時間 */
  readDate: string;
}
}
export interface UserReviewPlatformRes {
  agentNo?     : string;
  appointmentId: number;
  customerId   : string;
  id           : number,
  score        : string;
  type         : SatisfactionType;
}