From 597399726303f4f6f41b0a55d8dcaa153f49b97a Mon Sep 17 00:00:00 2001 From: yzh <snbbt@21cn.com> Date: 星期四, 19 五月 2022 14:57:33 +0800 Subject: [PATCH] 账号信息增加是否自动返还 系统账号信息增加:用户类型 客户信息增加:归属客户经理、归属业务员、归属客服人员、归属财务等 客户账号查询优化 账号查询充值优化 --- web/Model/Model/GwClient.cs | 30 ++++++++++++++++++++++++++++++ 1 files changed, 30 insertions(+), 0 deletions(-) diff --git a/web/Model/Model/GwClient.cs b/web/Model/Model/GwClient.cs index 4d852fb..b701058 100644 --- a/web/Model/Model/GwClient.cs +++ b/web/Model/Model/GwClient.cs @@ -6,8 +6,12 @@ namespace Model { + /// <summary> + /// 璐︽埛绫� + /// </summary> public class GwClient : ISessionObject { + private List<string> _PermissionList = new List<string>(); private string _clientId; private string _clientName; @@ -23,6 +27,23 @@ private Decimal _totalAmount; private Decimal _balance; private int _id; + + + + private int _certification_Status;//璁よ瘉鐘舵��:0-鏈璇�/1-宸茶璇� + private int _client_Classes;//瀹㈡埛绫诲埆:0-浼佷笟/1-涓汉 + private string _client_Parentid; //鐖剁骇璐︽埛 + private int _client_Type;//瀹㈡埛绫诲瀷(0-鐩村/娓犻亾銆�1-瀛愯处鎴�) + 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 { @@ -180,6 +201,15 @@ } } + + 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; } + public int Client_Type { get => _client_Type; set => _client_Type = value; } + public int Is_Enable { get => _is_Enable; set => _is_Enable = value; } + public decimal Top_up_Amount_Total { get => _top_up_Amount_Total; set => _top_up_Amount_Total = value; } + public string Salesman { get => _salesman; set => _salesman = value; } + public bool HasRight(string functionID) { return this._PermissionList.Contains(functionID); -- Gitblit v1.9.1