Explorar el Código

老版本的最终代码

lcl hace 1 año
padre
commit
6dfb97294a

BIN
Areas/Api/Controllers/v1/.DS_Store


+ 156 - 97
Areas/Api/Controllers/v1/MainServer/ConsumerOrdersController.cs

@@ -98,6 +98,47 @@ namespace MySystem.Areas.Api.Controllers.v1
 
 
 
+        #region 商户-经营数据-按月
+        [Authorize]
+        public JsonResult BussinessRecordForMonth(string value)
+        {
+            value = DesDecrypt(value);
+            JsonData data = JsonMapper.ToObject(value);
+            List<Dictionary<string, object>> dataList = BussinessRecordForMonthDo(value);
+            return Json(new AppResultJson() { Status = "1", Info = "", Data = dataList });
+        }
+        public List<Dictionary<string, object>> BussinessRecordForMonthDo(string value)
+        {
+            JsonData data = JsonMapper.ToObject(value);
+            int MerchantId = int.Parse(function.CheckInt(data["MerchantId"].ToString())); //商户
+            string Month = data["Month"].ToString(); //月份
+            int PageSize = int.Parse(function.CheckInt(data["PageSize"].ToString()));
+            int PageNum = int.Parse(function.CheckInt(data["PageNum"].ToString()));
+            List<Dictionary<string, object>> dataList = new List<Dictionary<string, object>>();
+            DataTable dt = MerchantAmountSummary.Instance.GetTradeListByDate(MerchantId, Month, PageNum, PageSize);
+            foreach (DataRow dr in dt.Rows)
+            {
+                string TradeDate = dr["TradeDate"].ToString();
+                Dictionary<string, object> curData = new Dictionary<string, object>();
+                curData.Add("Date", TradeDate.Substring(0, 4) + "-" + TradeDate.Substring(4, 2) + "-" + TradeDate.Substring(6, 2)); //日期
+                curData.Add("TotalAmount", dr[5].ToString()); //营收金额
+                curData.Add("TotalActual", dr[3].ToString()); //实收金额
+                curData.Add("WeChatAmount", dr[2].ToString()); //微信实收
+                curData.Add("AlipayAmount", dr[1].ToString()); //支付宝实收
+                curData.Add("OrderCount", dr[4].ToString()); //订单数
+                curData.Add("AddCount", 0); //新增会员
+                dataList.Add(curData);
+            }
+            return dataList;
+        }
+        #endregion
+
+
+
+        
+
+
+
         #region 商户-订单列表
         [Authorize]
         public JsonResult ForMer(string value)
@@ -200,8 +241,19 @@ namespace MySystem.Areas.Api.Controllers.v1
         public AppResultJson PayDo(string value)
         {
             JsonData data = JsonMapper.ToObject(value);
-            string SnNo = data["Sn"].ToString(); //商户
-            string Machine = data["Machine"].ToString();
+            string SnNo = data["Sn"].ToString(); //码牌SN
+            // string Machine = data["Machine"].ToString();
+            if(SnNo.Length > 20)
+            {
+                SnNo = System.Web.HttpUtility.UrlDecode(SnNo);
+                if(!SnNo.EndsWith("="))
+                {
+                    SnNo += "=";
+                }
+                SnNo = dbconn.Decrypt3DES(SnNo, "l2k0b2#3");
+                SnNo = SnNo.TrimEnd('\0');
+                SnNo = SnNo.Substring(0, SnNo.Length - 8);
+            }
             int PayMode = int.Parse(function.CheckInt(data["PayMode"].ToString())); //支付方式
             decimal PayMoney = decimal.Parse(function.CheckNum(data["PayMoney"].ToString())); //支付金额
             string Code = data["Code"].ToString();
@@ -217,115 +269,122 @@ namespace MySystem.Areas.Api.Controllers.v1
             {
                 return new AppResultJson() { Status = "-1", Info = "请填写正确的支付金额" };
             }
-            
+            Dictionary<string, object> Obj = new Dictionary<string, object>();
             MerchantQrCode qrcode = MerchantQrCodeDbconn.Instance.Get(SnNo) ?? new MerchantQrCode();
-
+            PosMachinesTwo pos = PosMachinesTwoDbconn.Instance.Get(SnNo) ?? new PosMachinesTwo();
             // PosMachines machine = PosMachinesDbconn.Instance.Get(qrcode.SnId) ?? new PosMachines();
             // if (machine.BindMerchantId == 0) machine.BindMerchantId = 1; // TODO: 需要绑定二维码
-            MerchantInfo merchant = MerchantInfoDbconn.Instance.Get(qrcode.MerchantId) ?? new MerchantInfo();
-            MerchantAddInfo merchantAdd = MerchantAddInfoDbconn.Instance.Get(qrcode.MerchantId) ?? new MerchantAddInfo();
-            MerchantParamSet merchantset = MerchantParamSetDbconn.Instance.Get(qrcode.MerchantId) ?? new MerchantParamSet();
-            string openid = "";
-            if (PayMode == 1)
-            { 
-                openid = new AlipayFunction(_accessor.HttpContext).GetAlipayUserId(Code);
-                if (openid.Contains("|"))
+            if(pos.OpId == 1)
+            {
+                MerchantInfo merchant = MerchantInfoDbconn.Instance.Get(qrcode.MerchantId) ?? new MerchantInfo();
+                MerchantAddInfo merchantAdd = MerchantAddInfoDbconn.Instance.Get(qrcode.MerchantId) ?? new MerchantAddInfo();
+                MerchantParamSet merchantset = MerchantParamSetDbconn.Instance.Get(qrcode.MerchantId) ?? new MerchantParamSet();
+                string openid = "";
+                if (PayMode == 1)
+                { 
+                    openid = new AlipayFunction(_accessor.HttpContext).GetAlipayUserId(Code);
+                    if (openid.Contains("|"))
+                    {
+                        openid = openid.Split('|')[0];
+                    }
+                }
+                else
                 {
-                    openid = openid.Split('|')[0];
+                    string result = function.GetWebRequest("https://api.weixin.qq.com/sns/jscode2session?appid=" + new WeChatFunction().AppId + "&secret=" + new WeChatFunction().AppSecret + "&js_code=" + Code + "&grant_type=authorization_code");
+                    function.WriteLog(DateTime.Now.ToString() + "\n" + result, "微信小程序获取openid");
+                    JsonData jsonObj = JsonMapper.ToObject(result);
+                    openid = jsonObj["openid"].ToString();
                 }
-            }
-            else
-            {
-                string result = function.GetWebRequest("https://api.weixin.qq.com/sns/jscode2session?appid=" + new WeChatFunction().AppId + "&secret=" + new WeChatFunction().AppSecret + "&js_code=" + Code + "&grant_type=authorization_code");
-                function.WriteLog(DateTime.Now.ToString() + "\n" + result, "微信小程序获取openid");
-                JsonData jsonObj = JsonMapper.ToObject(result);
-                openid = jsonObj["openid"].ToString();
-            }
-            int ConsumerId = 0;
-            ConsumerOpenIds check = maindb.ConsumerOpenIds.FirstOrDefault(m => m.OpenId == openid);
-            if (check == null)
-            {
-                // ConsumerId = PublicFunction.MakeConsumerId();
-                Consumers consumer = maindb.Consumers.Add(new Consumers()
+                int ConsumerId = 0;
+                ConsumerOpenIds check = maindb.ConsumerOpenIds.FirstOrDefault(m => m.OpenId == openid);
+                if (check == null)
                 {
-                    Id = ConsumerId,
-                    CreateDate = DateTime.Now,
-                    WechatOpenId = openid,
-                }).Entity;
+                    // ConsumerId = PublicFunction.MakeConsumerId();
+                    Consumers consumer = maindb.Consumers.Add(new Consumers()
+                    {
+                        Id = ConsumerId,
+                        CreateDate = DateTime.Now,
+                        WechatOpenId = openid,
+                    }).Entity;
+                    maindb.SaveChanges();
+                    ConsumerId = consumer.Id;
+                    check = maindb.ConsumerOpenIds.Add(new ConsumerOpenIds()
+                    {
+                        OpenId = openid,
+                        ConsumerId = ConsumerId,
+                    }).Entity;
+                }
+                else
+                {
+                    ConsumerId = check.ConsumerId;
+                }
                 maindb.SaveChanges();
-                ConsumerId = consumer.Id;
-                check = maindb.ConsumerOpenIds.Add(new ConsumerOpenIds()
+                string OrderNo = DateTime.Now.ToString("yyyyMMddHHmmssfff") + function.get_Random(8);
+                bool ActFlag = merchantset.IsAll == 1 ? false : true;
+                if(PayMoney < merchantset.MinPayMoney) //支付金额小于活动最小金额,则不分账
                 {
-                    OpenId = openid,
-                    ConsumerId = ConsumerId,
+                    ActFlag = false;
+                }
+                ConsumerOrders order = maindb.ConsumerOrders.Add(new ConsumerOrders()
+                {
+                    // Id = PublicFunction.MakeConsumerOrderId(),
+                    CreateDate = DateTime.Now, //创建时间
+                    MerchantId = qrcode.MerchantId, //商户
+                    ConsumerId = ConsumerId, //消费者
+                    UserId = merchant.UserId, //创客
+                    PayMode = PayMode, //支付方式
+                    PayMoney = PayMoney, //支付金额
+                    SnNo = SnNo, //SN号
+                    OrderNo = OrderNo,
+                    MaxDivi = ActFlag ? PayMoney * merchantset.DiviPercent / 100 : 0,
+                    IsAct = ActFlag ? 1u : 0u,
+                    MerchantActualAmount = ActFlag ? PayMoney * merchantset.GetPercent / 100 : PayMoney,
+                    SeoDescription = Newtonsoft.Json.JsonConvert.SerializeObject(merchantset),
                 }).Entity;
-            }
-            else
-            {
-                ConsumerId = check.ConsumerId;
-            }
-            maindb.SaveChanges();
-            Dictionary<string, object> Obj = new Dictionary<string, object>();
-            string OrderNo = DateTime.Now.ToString("yyyyMMddHHmmssfff") + function.get_Random(8);
-            bool ActFlag = merchantset.IsAll == 1 ? false : true;
-            if(PayMoney < merchantset.MinPayMoney) //支付金额小于活动最小金额,则不分账
-            {
-                ActFlag = false;
-            }
-            ConsumerOrders order = maindb.ConsumerOrders.Add(new ConsumerOrders()
-            {
-                // Id = PublicFunction.MakeConsumerOrderId(),
-                CreateDate = DateTime.Now, //创建时间
-                MerchantId = qrcode.MerchantId, //商户
-                ConsumerId = ConsumerId, //消费者
-                UserId = merchant.UserId, //创客
-                PayMode = PayMode, //支付方式
-                PayMoney = PayMoney, //支付金额
-                SnNo = SnNo, //SN号
-                OrderNo = OrderNo,
-                MaxDivi = ActFlag ? PayMoney * merchantset.DiviPercent / 100 : 0,
-                IsAct = ActFlag ? 1u : 0u,
-                MerchantActualAmount = ActFlag ? PayMoney * merchantset.GetPercent / 100 : PayMoney,
-                SeoDescription = Newtonsoft.Json.JsonConvert.SerializeObject(merchantset),
-            }).Entity;
-            maindb.SaveChanges();
-            maindb.ConsumerOrderForNo.Add(new ConsumerOrderForNo()
-            {
-                OrderNo = OrderNo,
-                OrderIds = order.Id,
-            });
-            maindb.SaveChanges();
-            if (PayMode == 1)
-            { 
-                string backString = new AlipayFunction(_accessor.HttpContext).CreateTrade(OrderNo, merchant.Name, PayMoney, openid, merchantAdd.AlipayAuthToken, SpHost + "/api/alipay/notice");
-                JsonData obj = JsonMapper.ToObject(backString);
-                if (obj["alipay_trade_create_response"]["code"].ToString() == "10000")
+                maindb.SaveChanges();
+                maindb.ConsumerOrderForNo.Add(new ConsumerOrderForNo()
                 {
-                    string tradeNo = obj["alipay_trade_create_response"]["trade_no"].ToString();
-                    Obj.Add("respCode", obj["alipay_trade_create_response"]["code"].ToString());
-                    Obj.Add("tradeNo", tradeNo);
-                }
-                else
+                    OrderNo = OrderNo,
+                    OrderIds = order.Id,
+                });
+                maindb.SaveChanges();
+                if (PayMode == 1)
                 { 
-                    Obj.Add("respCode", obj["alipay_trade_create_response"]["code"].ToString());
-                    Obj.Add("tradeNo", "");
-                    return new AppResultJson() { Status = "-1", Info = obj["alipay_trade_create_response"]["sub_msg"].ToString(), Data = Obj };
+                    string backString = new AlipayFunction(_accessor.HttpContext).CreateTrade(OrderNo, merchant.Name, PayMoney, openid, merchantAdd.AlipayAuthToken, SpHost + "/api/alipay/notice");
+                    JsonData obj = JsonMapper.ToObject(backString);
+                    if (obj["alipay_trade_create_response"]["code"].ToString() == "10000")
+                    {
+                        string tradeNo = obj["alipay_trade_create_response"]["trade_no"].ToString();
+                        Obj.Add("respCode", obj["alipay_trade_create_response"]["code"].ToString());
+                        Obj.Add("tradeNo", tradeNo);
+                    }
+                    else
+                    { 
+                        Obj.Add("respCode", obj["alipay_trade_create_response"]["code"].ToString());
+                        Obj.Add("tradeNo", "");
+                        return new AppResultJson() { Status = "-1", Info = obj["alipay_trade_create_response"]["sub_msg"].ToString(), Data = Obj };
+                    }
+                }
+                else if (PayMode == 2)
+                {
+                    string SubMchId = merchantAdd.SubMchid;
+                    string Description = merchant.Name;
+                    string OpenId = openid;
+                    string Key = AppConfig.WeChatParam.AesGemKey;
+                    string NotifyUrl = SpHost + "/api/wechat/notice";
+                    Dictionary<string, string> dic = new WeChatFunction(_accessor.HttpContext).Pay(SubMchId, PayMoney, OrderNo, Description, OpenId, Key, NotifyUrl, ActFlag);
+                    Obj.Add("appId", dic["appId"]); //微信小程序appid
+                    Obj.Add("timeStamp", dic["timeStamp"]); //时间戳
+                    Obj.Add("nonceStr", dic["nonceStr"]); //随机字符串
+                    Obj.Add("package", dic["package"]); //统一支付接口返回的prepayid参数值
+                    Obj.Add("paySign", dic["paySign"]); //支付签名
+                    Obj.Add("ConsumerId", ConsumerId);
                 }
             }
-            else if (PayMode == 2)
+            else
             {
-                string SubMchId = merchantAdd.SubMchid;
-                string Description = merchant.Name;
-                string OpenId = openid;
-                string Key = AppConfig.WeChatParam.AesGemKey;
-                string NotifyUrl = SpHost + "/api/wechat/notice";
-                Dictionary<string, string> dic = new WeChatFunction(_accessor.HttpContext).Pay(SubMchId, PayMoney, OrderNo, Description, OpenId, Key, NotifyUrl, ActFlag);
-                Obj.Add("appId", dic["appId"]); //微信小程序appid
-                Obj.Add("timeStamp", dic["timeStamp"]); //时间戳
-                Obj.Add("nonceStr", dic["nonceStr"]); //随机字符串
-                Obj.Add("package", dic["package"]); //统一支付接口返回的prepayid参数值
-                Obj.Add("paySign", dic["paySign"]); //支付签名
-                Obj.Add("ConsumerId", ConsumerId);
+                string result = function.PostWebRequest(AppConfig.Base.Host2 + "api/v1/consumerorders/pay", "value=" + value);
+                return Newtonsoft.Json.JsonConvert.DeserializeObject<AppResultJson>(result);
             }
             return new AppResultJson() { Status = "1", Info = "", Data = Obj };
         }

+ 23 - 0
MainModels/BusinessScope.cs

@@ -0,0 +1,23 @@
+using System;
+using System.Collections.Generic;
+
+namespace MySystem.MainModels
+{
+    public partial class BusinessScope
+    {
+        public int Id { get; set; }
+        public int Sort { get; set; }
+        public int QueryCount { get; set; }
+        public int Status { get; set; }
+        public int Version { get; set; }
+        public DateTime? CreateDate { get; set; }
+        public DateTime? UpdateDate { get; set; }
+        public string CreateMan { get; set; }
+        public string UpdateMan { get; set; }
+        public string SeoTitle { get; set; }
+        public string SeoKeyword { get; set; }
+        public string SeoDescription { get; set; }
+        public int KindId { get; set; }
+        public string Name { get; set; }
+    }
+}

+ 22 - 0
MainModels/BusinessScopeType.cs

@@ -0,0 +1,22 @@
+using System;
+using System.Collections.Generic;
+
+namespace MySystem.MainModels
+{
+    public partial class BusinessScopeType
+    {
+        public int Id { get; set; }
+        public int Sort { get; set; }
+        public int QueryCount { get; set; }
+        public int Status { get; set; }
+        public int Version { get; set; }
+        public DateTime? CreateDate { get; set; }
+        public DateTime? UpdateDate { get; set; }
+        public string CreateMan { get; set; }
+        public string UpdateMan { get; set; }
+        public string SeoTitle { get; set; }
+        public string SeoKeyword { get; set; }
+        public string SeoDescription { get; set; }
+        public string KindName { get; set; }
+    }
+}

+ 11 - 0
MainModels/HaoDaAreaCode.cs

@@ -0,0 +1,11 @@
+using System;
+using System.Collections.Generic;
+
+namespace MySystem.MainModels
+{
+    public partial class HaoDaAreaCode
+    {
+        public string CityName { get; set; }
+        public string CityCode { get; set; }
+    }
+}

+ 24 - 0
MainModels/MerchantAccountLinkInfo.cs

@@ -0,0 +1,24 @@
+using System;
+using System.Collections.Generic;
+
+namespace MySystem.MainModels
+{
+    public partial class MerchantAccountLinkInfo
+    {
+        public int Id { get; set; }
+        public int Sort { get; set; }
+        public int QueryCount { get; set; }
+        public int Status { get; set; }
+        public int Version { get; set; }
+        public DateTime? CreateDate { get; set; }
+        public DateTime? UpdateDate { get; set; }
+        public string CreateMan { get; set; }
+        public string UpdateMan { get; set; }
+        public string SeoTitle { get; set; }
+        public string SeoKeyword { get; set; }
+        public string SeoDescription { get; set; }
+        public int MerchantId { get; set; }
+        public int Kind { get; set; }
+        public int LoginId { get; set; }
+    }
+}

+ 41 - 0
MainModels/MerchantAddInfo.cs

@@ -103,5 +103,46 @@ namespace MySystem.MainModels
         public string AlipaySignUrl { get; set; }
         public string AlipayAuthToken { get; set; }
         public string AlipayPid { get; set; }
+        public string Extra1 { get; set; }
+        public string FaceRecognition { get; set; }
+        public string IndustryLicense1 { get; set; }
+        public string TaxImage { get; set; }
+        public string Agreement { get; set; }
+        public string ProductImg { get; set; }
+        public string CheckstandImg { get; set; }
+        public string ShopFrontImg { get; set; }
+        public string Support { get; set; }
+        public string SignaturePicture { get; set; }
+        public string AgentIdCardBack { get; set; }
+        public string AgentIdCardFront { get; set; }
+        public string AgentCardIdPicture { get; set; }
+        public string HoldAgentProtocol { get; set; }
+        public string AgentProtocol { get; set; }
+        public string OperatorMcht { get; set; }
+        public string RentAgreement { get; set; }
+        public string OpenAccountLicenses { get; set; }
+        public string ChannelKind { get; set; }
+        public string TakeCreditCard { get; set; }
+        public string BankCard { get; set; }
+        public string PersonWithIdCard { get; set; }
+        public string BusinessId { get; set; }
+        public string AreaNo { get; set; }
+        public string OpenUnionNo { get; set; }
+        public string OpenCollectBankCode { get; set; }
+        public string OpenBankRegionCode { get; set; }
+        public string OpenBankAccout { get; set; }
+        public string OpenBankAccName { get; set; }
+        public string ZbankRegionCode { get; set; }
+        public string ZbankNo { get; set; }
+        public string AccountType { get; set; }
+        public string LicenceType { get; set; }
+        public string ResserveMobile { get; set; }
+        public string MchtNo { get; set; }
+        public string ToAcctNo { get; set; }
+        public int OpenAct { get; set; }
+        public string StoreNo { get; set; }
+        public string OutMchtNo { get; set; }
+        public string AliMerchantId { get; set; }
+        public string WeChatMerchantId { get; set; }
     }
 }

+ 26 - 0
MainModels/MerchantDiviSummay.cs

@@ -0,0 +1,26 @@
+using System;
+using System.Collections.Generic;
+
+namespace MySystem.MainModels
+{
+    public partial class MerchantDiviSummay
+    {
+        public int Id { get; set; }
+        public int Sort { get; set; }
+        public int QueryCount { get; set; }
+        public int Status { get; set; }
+        public int Version { get; set; }
+        public DateTime? CreateDate { get; set; }
+        public DateTime? UpdateDate { get; set; }
+        public string CreateMan { get; set; }
+        public string UpdateMan { get; set; }
+        public string SeoTitle { get; set; }
+        public string SeoKeyword { get; set; }
+        public string SeoDescription { get; set; }
+        public decimal DiviAmount { get; set; }
+        public decimal TotalDiviAmount { get; set; }
+        public int MerchantId { get; set; }
+        public string TradeDate { get; set; }
+        public string TradeMonth { get; set; }
+    }
+}

+ 4 - 0
MainModels/MerchantInfo.cs

@@ -41,5 +41,9 @@ namespace MySystem.MainModels
         public decimal TotalActActual { get; set; }
         public decimal TotalActAmount { get; set; }
         public int ActStat { get; set; }
+        public DateTime? SignDate { get; set; }
+        public decimal AllocationAmount { get; set; }
+        public decimal ActMaxAmount { get; set; }
+        public decimal ActCurrentAmount { get; set; }
     }
 }

+ 23 - 0
MainModels/MerchantLoginInfo.cs

@@ -0,0 +1,23 @@
+using System;
+using System.Collections.Generic;
+
+namespace MySystem.MainModels
+{
+    public partial class MerchantLoginInfo
+    {
+        public int Id { get; set; }
+        public int Sort { get; set; }
+        public int QueryCount { get; set; }
+        public int Status { get; set; }
+        public int Version { get; set; }
+        public DateTime? CreateDate { get; set; }
+        public DateTime? UpdateDate { get; set; }
+        public string CreateMan { get; set; }
+        public string UpdateMan { get; set; }
+        public string SeoTitle { get; set; }
+        public string SeoKeyword { get; set; }
+        public string SeoDescription { get; set; }
+        public string LoginPwd { get; set; }
+        public string LoginMobile { get; set; }
+    }
+}

+ 31 - 0
MainModels/MerchantTradeSummary.cs

@@ -0,0 +1,31 @@
+using System;
+using System.Collections.Generic;
+
+namespace MySystem.MainModels
+{
+    public partial class MerchantTradeSummary
+    {
+        public int Id { get; set; }
+        public int Sort { get; set; }
+        public int QueryCount { get; set; }
+        public int Status { get; set; }
+        public int Version { get; set; }
+        public DateTime? CreateDate { get; set; }
+        public DateTime? UpdateDate { get; set; }
+        public string CreateMan { get; set; }
+        public string UpdateMan { get; set; }
+        public string SeoTitle { get; set; }
+        public string SeoKeyword { get; set; }
+        public string SeoDescription { get; set; }
+        public decimal AliPayInFactAmount { get; set; }
+        public decimal WeChatInfactAmount { get; set; }
+        public int OderCount { get; set; }
+        public decimal InFactAmount { get; set; }
+        public decimal TradeAmount { get; set; }
+        public string TradeDate { get; set; }
+        public string TradeMonth { get; set; }
+        public int MerchantId { get; set; }
+        public decimal ActAmount { get; set; }
+        public decimal NonActAmount { get; set; }
+    }
+}

+ 13 - 0
MainModels/OpenBankAll.cs

@@ -0,0 +1,13 @@
+using System;
+using System.Collections.Generic;
+
+namespace MySystem.MainModels
+{
+    public partial class OpenBankAll
+    {
+        public string BankChild { get; set; }
+        public string BankChildNo { get; set; }
+        public string BankParentNo { get; set; }
+        public string BankParent { get; set; }
+    }
+}

+ 98 - 0
MainModels/UsersTmp.cs

@@ -0,0 +1,98 @@
+using System;
+using System.Collections.Generic;
+
+namespace MySystem.MainModels
+{
+    public partial class UsersTmp
+    {
+        public int Id { get; set; }
+        public int Sort { get; set; }
+        public int QueryCount { get; set; }
+        public int Status { get; set; }
+        public int Version { get; set; }
+        public DateTime? CreateDate { get; set; }
+        public DateTime? UpdateDate { get; set; }
+        public string CreateMan { get; set; }
+        public string UpdateMan { get; set; }
+        public string SeoTitle { get; set; }
+        public string SeoKeyword { get; set; }
+        public string SeoDescription { get; set; }
+        public string AgentAreas { get; set; }
+        public int AgentLevel { get; set; }
+        public string SettleBankCardName { get; set; }
+        public DateTime? CertValidEndDate { get; set; }
+        public DateTime? CertValidStartDate { get; set; }
+        public DateTime? CitySetDate { get; set; }
+        public decimal ProfitRewardRate { get; set; }
+        public decimal ActiveRewardAmount { get; set; }
+        public decimal CashFreezeAmt { get; set; }
+        public decimal SettleAmount { get; set; }
+        public string MakerCode { get; set; }
+        public string HandPwd { get; set; }
+        public string Remark { get; set; }
+        public string BankCardPositiveImage { get; set; }
+        public string HandCertImage { get; set; }
+        public string CertReverseImage { get; set; }
+        public string CertFrontImage { get; set; }
+        public string DeviceToken { get; set; }
+        public string DeviceId { get; set; }
+        public DateTime? ExpiredDate { get; set; }
+        public string AccessToken { get; set; }
+        public string SettleRemark { get; set; }
+        public string RreezeRemark { get; set; }
+        public string RiskRemark { get; set; }
+        public ulong RiskFlag { get; set; }
+        public DateTime? AuthDate { get; set; }
+        public ulong AuthFlag { get; set; }
+        public ulong LockStatus { get; set; }
+        public int AuditStatus { get; set; }
+        public int LoginStatus { get; set; }
+        public DateTime? MerchantDate { get; set; }
+        public int MerchantType { get; set; }
+        public int UserProperty { get; set; }
+        public int UserType { get; set; }
+        public string SignImgUrl { get; set; }
+        public string ReferenceQrCode { get; set; }
+        public string CardRecCode { get; set; }
+        public int ReferralUserId { get; set; }
+        public string ReferenceCode { get; set; }
+        public string SettleBankName { get; set; }
+        public string SettleBankCardNo { get; set; }
+        public string IdCardEndNo { get; set; }
+        public ulong IsNewUser { get; set; }
+        public string AlipayUserId { get; set; }
+        public string OpenId { get; set; }
+        public string CarIds { get; set; }
+        public string PayPwd { get; set; }
+        public string LoginPwd { get; set; }
+        public string ParentNav { get; set; }
+        public string Tags { get; set; }
+        public string GroupId { get; set; }
+        public string Mobile { get; set; }
+        public string CardNo { get; set; }
+        public int UserLevel { get; set; }
+        public int ParentUserId { get; set; }
+        public string HeadPhoto { get; set; }
+        public string Address { get; set; }
+        public string Areas { get; set; }
+        public string CertId { get; set; }
+        public int Sex { get; set; }
+        public string RealName { get; set; }
+        public string NickName { get; set; }
+        public int CashStatus { get; set; }
+        public string CashNote { get; set; }
+        public decimal ThisMonthTrade { get; set; }
+        public int LeaderLevel { get; set; }
+        public int BusinessFlag { get; set; }
+        public decimal ValidAmount { get; set; }
+        public string DeviceType { get; set; }
+        public DateTime? HelpProfitAgreeDate { get; set; }
+        public ulong HelpProfitAgree { get; set; }
+        public string SignPic { get; set; }
+        public DateTime? SignDate { get; set; }
+        public ulong IsSign { get; set; }
+        public DateTime? CreateStoreDate { get; set; }
+        public int StoreStock { get; set; }
+        public int ThisMonthSend { get; set; }
+    }
+}

La diferencia del archivo ha sido suprimido porque es demasiado grande
+ 693 - 28
MainModels/WebCMSEntities.cs


Algunos archivos no se mostraron porque demasiados archivos cambiaron en este cambio