保誠-保戶業務員媒合平台
wayne
2022-02-17 4394e4248455637ab7836756058ac872fdf4af10
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;
}