From ba5f9f95bb8191c73c1a6fe5d1810cdfce217502 Mon Sep 17 00:00:00 2001 From: Tomas <tomasysh@gmail.com> Date: 星期一, 21 八月 2023 15:37:39 +0800 Subject: [PATCH] Update: [推廣影片] sandbox attribute add allow-presentation --- PAMapp/shared/models/reviews.model.ts | 15 +++++++++++++-- 1 files changed, 13 insertions(+), 2 deletions(-) diff --git a/PAMapp/shared/models/reviews.model.ts b/PAMapp/shared/models/reviews.model.ts index 7e5941e..e8eba03 100644 --- a/PAMapp/shared/models/reviews.model.ts +++ b/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; -} \ No newline at end of file +} + +export interface UserReviewPlatformRes { + agentNo? : string; + appointmentId: number; + customerId : string; + id : number, + score : string; + type : SatisfactionType; +} -- Gitblit v1.8.0