From b0733e169ddcdf67e81f70dcf7f4dc948e85ff19 Mon Sep 17 00:00:00 2001 From: HelenHuang <LinHuang@pollex.com.tw> Date: 星期五, 21 一月 2022 22:20:12 +0800 Subject: [PATCH] fixed#134599 修正 [ 顧問管理流程 ] 結案狀態的預約單 : 在結案明細中,點擊「發送滿意度通知」沒有反映。 --- PAMapp/shared/models/account.model.ts | 23 +++++++++++++++++++++-- 1 files changed, 21 insertions(+), 2 deletions(-) diff --git a/PAMapp/shared/models/account.model.ts b/PAMapp/shared/models/account.model.ts index abc4914..0076a64 100644 --- a/PAMapp/shared/models/account.model.ts +++ b/PAMapp/shared/models/account.model.ts @@ -1,5 +1,24 @@ export interface UserSetting { - name: string; + name : string; phone?: string; email?: string; -} \ No newline at end of file +} + +export interface AgentInfoSetting{ + agentNo : string; + name : string; + expertise : string[]; + title : string; + role : string; + serveArea : string; + gender : string; + phoneNumber : string; + companyAddress : string; + seniorityYear : number; + seniorityMonth : number; + concept : string; + experiences : string; + awards : string; + communicationStyle: string; + photoBase64 : string; +} -- Gitblit v1.8.0