From 078cdb2b41d1dec47e2d981c2d2e618d12beddb4 Mon Sep 17 00:00:00 2001
From: Mila <Mila@pollex.com.tw>
Date: 星期四, 26 十二月 2024 09:43:23 +0800
Subject: [PATCH] feat(顧問登入): 串接 otp 發送/驗證 api

---
 PAMapp/shared/models/account.model.ts |   25 +++++++++++++++++++++++--
 1 files changed, 23 insertions(+), 2 deletions(-)

diff --git a/PAMapp/shared/models/account.model.ts b/PAMapp/shared/models/account.model.ts
index abc4914..9975a23 100644
--- a/PAMapp/shared/models/account.model.ts
+++ b/PAMapp/shared/models/account.model.ts
@@ -1,5 +1,26 @@
 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;
+    email             : string;
+    entryDate         : string;
+}

--
Gitblit v1.8.0