From 3a3e585d9dd93688ed237bfc46bf06991d0772a1 Mon Sep 17 00:00:00 2001 From: yzh <snbbt@21cn.com> Date: 星期四, 19 五月 2022 15:00:52 +0800 Subject: [PATCH] 账号信息增加是否自动返还 系统账号信息增加:用户类型 客户信息增加:归属客户经理、归属业务员、归属客服人员、归属财务等 客户账号查询优化 账号查询充值优化 --- web/Model/Model/GwClient.cs | 15 ++++++++++++--- 1 files changed, 12 insertions(+), 3 deletions(-) diff --git a/web/Model/Model/GwClient.cs b/web/Model/Model/GwClient.cs index f67c1fc..b701058 100644 --- a/web/Model/Model/GwClient.cs +++ b/web/Model/Model/GwClient.cs @@ -11,7 +11,8 @@ /// </summary> public class GwClient : ISessionObject { - private List<string> _PermissionList = new List<string>();//鏉冮檺鍒楄〃 + + private List<string> _PermissionList = new List<string>(); private string _clientId; private string _clientName; private string _telephone; @@ -21,10 +22,12 @@ private string _remark; private string _password; - private string _parentId; + + private string _parentId;//涓婄骇ID private Decimal _totalAmount; private Decimal _balance; private int _id; + private int _certification_Status;//璁よ瘉鐘舵��:0-鏈璇�/1-宸茶璇� @@ -34,7 +37,12 @@ private int _is_Enable;//鏄惁鍚敤鐘舵��(1-鍚�/0-鍋�) private Decimal _top_up_Amount_Total;//绱鍏呭��(閲戦) private string _salesman;//褰掑睘涓氬姟鍛� - + public string CustomerManager { get; set; } //褰掑睘瀹㈡埛缁忕悊 + public string SupportStaff { get; set; } //褰掑睘瀹㈡湇浜哄憳 + public string FinancialStaff { get; set; } //褰掑睘璐㈠姟浜哄憳 + public int ChargeType { get; set; } //璁¤垂鏂瑰紡锛�1-棰勪粯璐癸紱2-鍚庝粯璐�. + public int SmsStatusReport { get; set; } //鐭俊鏄惁鏀寔鏄剧ず鐘舵�佹姤鍛婏細0-涓嶆樉绀�;1-鍙樉绀烘彁浜ゅけ璐ヤ负鍙戦�佸け璐ョ姸鎬�;2-鏄剧ず鍏ㄩ儴鐘舵�佺姸鎬�. + public int MmsStatusReport { get; set; } //褰╀俊鏄惁鏀寔鏄剧ず鐘舵�佹姤鍛婏細0-涓嶆樉绀�;1-鍙樉绀烘彁浜ゅけ璐ヤ负鍙戦�佸け璐ョ姸鎬�;2-鏄剧ず鍏ㄩ儴鐘舵�佺姸鎬�. public int Id @@ -193,6 +201,7 @@ } } + public int Certification_Status { get => _certification_Status; set => _certification_Status = value; } public int Client_Classes { get => _client_Classes; set => _client_Classes = value; } public string Client_Parentid { get => _client_Parentid; set => _client_Parentid = value; } -- Gitblit v1.9.1