保誠-保戶業務員媒合平台
HelenHuang
2022-02-15 dc834c0bb42b788888212d5a58eeff0d98373bec
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 {
@@ -20,16 +22,11 @@
  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';
  type         : SatisfactionType;
}