From 89b8562ad1fb3943db3ffb922544afb3ce57e457 Mon Sep 17 00:00:00 2001
From: wangsheng <123456>
Date: 星期一, 07 三月 2022 17:06:28 +0800
Subject: [PATCH] 待审核增加通道筛选

---
 web/Model/Model/GwClient.cs |   25 +++++++++++++++++++++++++
 1 files changed, 25 insertions(+), 0 deletions(-)

diff --git a/web/Model/Model/GwClient.cs b/web/Model/Model/GwClient.cs
index 766ee56..1032e55 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;
@@ -18,10 +22,22 @@
         private string _remark;
         private string _password;
 
+
         private string _parentId;//涓婄骇ID
         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 int Id
         {
@@ -179,6 +195,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