Browse Source

推荐王更换数据模型

lcl 3 months ago
parent
commit
0cc3c95493
37 changed files with 3854 additions and 33 deletions
  1. 30 30
      AppStart/Helper/RecommandKingHelper.cs
  2. 3 0
      Config/MysqlConn.cs
  3. 47 0
      JavaProductModels/KxsBrand.cs
  4. 17 0
      JavaProductModels/KxsBrandSort.cs
  5. 32 0
      JavaProductModels/KxsGdOrder.cs
  6. 28 0
      JavaProductModels/KxsGdReport.cs
  7. 53 0
      JavaProductModels/KxsMachine.cs
  8. 22 0
      JavaProductModels/KxsMachineAward.cs
  9. 22 0
      JavaProductModels/KxsMachineCashOrder.cs
  10. 20 0
      JavaProductModels/KxsMachineCirculationLog.cs
  11. 35 0
      JavaProductModels/KxsMachineCutBind.cs
  12. 17 0
      JavaProductModels/KxsMachineDeduct.cs
  13. 19 0
      JavaProductModels/KxsMachineExpInfo.cs
  14. 22 0
      JavaProductModels/KxsMachinePledge.cs
  15. 26 0
      JavaProductModels/KxsMachineRatio.cs
  16. 25 0
      JavaProductModels/KxsMachineTrack.cs
  17. 24 0
      JavaProductModels/KxsMachineTransfer.cs
  18. 21 0
      JavaProductModels/KxsMachineUnbind.cs
  19. 30 0
      JavaProductModels/KxsMerchant.cs
  20. 26 0
      JavaProductModels/KxsMerchantReturn.cs
  21. 25 0
      JavaProductModels/KxsMerchantTrade.cs
  22. 20 0
      JavaProductModels/KxsMerchantUser.cs
  23. 22 0
      JavaProductModels/KxsShopCate.cs
  24. 28 0
      JavaProductModels/KxsShopGoods.cs
  25. 17 0
      JavaProductModels/KxsShopGoodsPic.cs
  26. 22 0
      JavaProductModels/KxsShopGoodsSku.cs
  27. 18 0
      JavaProductModels/KxsShopGoodsSpec.cs
  28. 38 0
      JavaProductModels/KxsShopOrder.cs
  29. 22 0
      JavaProductModels/KxsShopOrderInfo.cs
  30. 22 0
      JavaProductModels/KxsTicket.cs
  31. 24 0
      JavaProductModels/KxsTicketTransfer.cs
  32. 17 0
      JavaProductModels/KxsTicketTransferInfo.cs
  33. 22 0
      JavaProductModels/KxsTicketUpgrade.cs
  34. 16 0
      JavaProductModels/UndoLog.cs
  35. 3018 0
      JavaProductModels/WebCMSEntities.cs
  36. 3 3
      Startup.cs
  37. 1 0
      appsettings.Development.json

+ 30 - 30
AppStart/Helper/RecommandKingHelper.cs

@@ -2,7 +2,8 @@
 using System.Collections.Generic;
 using System.Linq;
 using System.Data;
-using MySystem.PxcModels;
+using MySystem.JavaUserModels;
+using MySystem.JavaStatModels;
 using Library;
 using LitJson;
 using System.Threading;
@@ -51,17 +52,18 @@ namespace MySystem
         }
         public void Recommend(string TradeMonth, int Kind)
         {
+            int TradeMonthNum = int.Parse(TradeMonth);
             int CheckCount = 0;
             if(Kind == 1) CheckCount = 40;
             if(Kind >= 2) CheckCount = 50;
             List<int> ReduceUserId = new List<int>();
-            WebCMSEntities db = new WebCMSEntities();
-            List<RecommendDirectUser> list = new List<RecommendDirectUser>();
+            MySystem.JavaUserModels.WebCMSEntities db = new MySystem.JavaUserModels.WebCMSEntities();
+            List<KxsInviteKing> list = new List<KxsInviteKing>();
             List<int> Historys = new List<int>();
 
             if(Kind < 3)
             {
-                Historys = db.RecommendDirectUser.Where(m => m.QueryCount >= 40 && m.Kind == 1).ToList().Select(m => m.UserId).ToList();
+                Historys = db.KxsInviteKing.Where(m => m.StepNum >= 40 && m.Kind == 1).ToList().Select(m => m.UserId).ToList();
                 Historys.Add(565);
                 Historys.Add(139473);
                 Historys.Add(173790);
@@ -144,13 +146,13 @@ namespace MySystem
             }
             else if(Kind == 3)
             {
-                Historys = db.RecommendDirectUser.Where(m => m.QueryCount >= 40 && m.TradeMonth == TradeMonth && m.Kind == 1).ToList().Select(m => m.UserId).ToList();
+                Historys = db.KxsInviteKing.Where(m => m.StepNum >= 40 && m.TradeMonth == TradeMonthNum && m.Kind == 1).ToList().Select(m => m.UserId).ToList();
             }
 
             DateTime check = DateTime.Parse("2023-10-01 00:00:00");
             DateTime start = DateTime.Parse(TradeMonth.Substring(0, 4) + "-" + TradeMonth.Substring(4, 2) + "-01 00:00:00");
             DateTime end = start.AddMonths(1);
-            CustomerSqlConn.op("delete from RecommendDirectUser where TradeMonth='" + TradeMonth + "' and Kind=" + Kind, MysqlConn.SqlConnStr);
+            CustomerSqlConn.op("delete from kxs_invite_king where trade_month='" + TradeMonth + "' and kind=" + Kind, MysqlConn.JavaUserSqlConnStr);
             List<int> ProductIds = new List<int>();
             ProductIds.Add(10);
             ProductIds.Add(11);
@@ -162,17 +164,18 @@ namespace MySystem
             ProductIds.Add(39);
             ProductIds.Add(40);
             List<RecommandKingItem> users = new List<RecommandKingItem>();
-            ReadModels.WebCMSEntities readdb = new ReadModels.WebCMSEntities();
+            JavaStatModels.WebCMSEntities statdb = new JavaStatModels.WebCMSEntities();
+            JavaProductModels.WebCMSEntities productdb = new JavaProductModels.WebCMSEntities();
             MpMainModels.WebCMSEntities mpdb = new MpMainModels.WebCMSEntities();
             MpMainModels2.WebCMSEntities mpdb2 = new MpMainModels2.WebCMSEntities();
             //统计当月下单名单
-            // List<int> checkIds = readdb.Users.Where(m => (m.ParentNav.Contains(",609,") || m.Id == 609) && m.AuthFlag == 1).ToList().Select(m => m.Id).ToList();
-            var orders = readdb.Orders.Where(m => m.PayDate >= check && m.Status > 0 && m.Sort == 0 && m.UserId > 1 && ProductIds.Contains(m.ProductId)).ToList();
+            var orderids = productdb.KxsShopOrderInfo.Where(m => ProductIds.Contains(m.GoodsId)).ToList().Select(m => m.OrderId).ToList();
+            var orders = productdb.KxsShopOrder.Where(m => m.PayTime >= check && m.Status > 0 && m.UserId > 1 && orderids.Contains(m.Id)).ToList();
             function.WriteLog(orders.Count.ToString(), "推荐王创客入库");
             List<int> uids = orders.Select(m => m.UserId).Distinct().ToList();
             foreach(int uid in uids)
             {
-                ReadModels.Users user = readdb.Users.FirstOrDefault(m => m.Id == uid);
+                JavaUserModels.KxsUser user = db.KxsUser.FirstOrDefault(m => m.Id == uid);
                 if(user != null)
                 {
                     if(!users.Any(m => m.UserId == user.Id))
@@ -180,10 +183,10 @@ namespace MySystem
                         users.Add(new RecommandKingItem()
                         {
                             UserId = user.Id,
-                            ParentUserId = user.ParentUserId,
-                            ParentNav = user.ParentNav,
+                            ParentUserId = user.Pid,
+                            ParentNav = user.PidPath,
                             // PreAmount = PreMonthAmt.ContainsKey(user.Id) ? PreMonthAmt[user.Id] : 0,
-                            Level = user.ParentNav.Replace(",,", ",").Trim(',').Split(',').Length + 1,
+                            Level = user.PidPath.Replace(",,", ",").Trim(',').Split(',').Length + 1,
                             UserLevel = user.UserLevel,
                             Kind = 1,
                             Op = false,
@@ -198,13 +201,9 @@ namespace MySystem
                 int ActCount = 0;
                 if(ActCount == 0)
                 {
-                    if(readdb.UserTradeMonthSummary.Any(m => m.UserId == uid && m.TradeMonth == TradeMonth && m.SeoTitle == "self"))
+                    if(statdb.KxsUserActTrade.Any(m => m.UserId == uid && m.TradeMonth == TradeMonthNum && m.TotalType == 1))
                     {
-                        ActCount += readdb.UserTradeMonthSummary.Where(m => m.UserId == uid && m.TradeMonth == TradeMonth && m.SeoTitle == "self").Sum(m => m.ActiveBuddyMerStatus);
-                        // if(readdb.UserSimActSummary.Any(m => m.UserId == uid && m.Kind == 1))
-                        // {
-                        //     ActCount -= readdb.UserSimActSummary.Where(m => m.UserId == uid && m.Kind == 1).Sum(m => m.ActCount); //减去注销的用户
-                        // }
+                        ActCount += statdb.KxsUserActTrade.Where(m => m.UserId == uid && m.TradeMonth == TradeMonthNum && m.TotalType == 1).Sum(m => m.ActNum);
                     }
                 }
                 if(ActCount == 0)
@@ -223,14 +222,14 @@ namespace MySystem
             }
             foreach(int uid in uids)
             {
-                ReadModels.Users user = readdb.Users.FirstOrDefault(m => m.Id == uid);
+                JavaUserModels.KxsUser user = db.KxsUser.FirstOrDefault(m => m.Id == uid);
                 if(user != null)
                 {
-                    string[] ParentIds = user.ParentNav.Replace(",,", ",").Trim(',').Split(',');
+                    string[] ParentIds = user.PidPath.Replace(",,", ",").Trim(',').Split(',');
                     foreach(string ParentId in ParentIds)
                     {
                         int ParentUserId = int.Parse(ParentId);
-                        ReadModels.Users puser = readdb.Users.FirstOrDefault(m => m.Id == ParentUserId && m.Id > 1);
+                        JavaUserModels.KxsUser puser = db.KxsUser.FirstOrDefault(m => m.Id == ParentUserId && m.Id > 1);
                         if(puser != null)
                         {
                             if(!users.Any(m => m.UserId == puser.Id))
@@ -238,10 +237,10 @@ namespace MySystem
                                 users.Add(new RecommandKingItem()
                                 {
                                     UserId = puser.Id,
-                                    ParentUserId = puser.ParentUserId,
-                                    ParentNav = puser.ParentNav,
+                                    ParentUserId = puser.Pid,
+                                    ParentNav = puser.PidPath,
                                     // PreAmount = PreMonthAmt.ContainsKey(puser.Id) ? PreMonthAmt[puser.Id] : 0,
-                                    Level = puser.ParentNav.Replace(",,", ",").Trim(',').Split(',').Length + 1,
+                                    Level = puser.PidPath.Replace(",,", ",").Trim(',').Split(',').Length + 1,
                                     UserLevel = puser.UserLevel,
                                     Kind = 2,
                                     Op = false,
@@ -293,15 +292,15 @@ namespace MySystem
                 if(op)
                 {
                     num += 1;
-                    RecommendDirectUser item = db.RecommendDirectUser.FirstOrDefault(m => m.UserId == user.UserId && m.TradeMonth == TradeMonth && m.Kind == Kind);
+                    KxsInviteKing item = db.KxsInviteKing.FirstOrDefault(m => m.UserId == user.UserId && m.TradeMonth == TradeMonthNum && m.Kind == Kind);
                     if(item == null)
                     {
                         function.WriteLog(user.UserId.ToString(), "推荐王达标最终入库");
-                        item = db.RecommendDirectUser.Add(new RecommendDirectUser()
+                        item = db.KxsInviteKing.Add(new KxsInviteKing()
                         {
                             UserId = user.UserId,
-                            TradeMonth = TradeMonth,
-                            QueryCount = user.ActCount > CheckCount ? CheckCount : user.ActCount,
+                            TradeMonth = TradeMonthNum,
+                            StepNum = user.ActCount > CheckCount ? CheckCount : user.ActCount,
                             Kind = Kind,
                         }).Entity;
                         if(num % 200 == 0)
@@ -313,7 +312,8 @@ namespace MySystem
             }
             db.SaveChanges();
             db.Dispose();
-            readdb.Dispose();
+            statdb.Dispose();
+            productdb.Dispose();
             mpdb.Dispose();
             mpdb2.Dispose();
         }

+ 3 - 0
Config/MysqlConn.cs

@@ -9,6 +9,9 @@ namespace MySystem
         public static string OpSqlConnStr = ConfigurationManager.AppSettings["OpSqlConnStr"].ToString();
         public static string RdsStatSqlConnStr = ConfigurationManager.AppSettings["RdsStatSqlConnStr"].ToString();
         public static string StatSqlConnStr = ConfigurationManager.AppSettings["MainSqlConnStr"].ToString();
+        public static string JavaUserSqlConnStr = ConfigurationManager.AppSettings["JavaUserSqlConnStr"].ToString();
+        public static string JavaStatSqlConnStr = ConfigurationManager.AppSettings["JavaStatSqlConnStr"].ToString();
+        public static string JavaProductSqlConnStr = ConfigurationManager.AppSettings["JavaProductSqlConnStr"].ToString();
 
         
     }

+ 47 - 0
JavaProductModels/KxsBrand.cs

@@ -0,0 +1,47 @@
+using System;
+using System.Collections.Generic;
+
+namespace MySystem.JavaProductModels
+{
+    public partial class KxsBrand
+    {
+        public int Id { get; set; }
+        public int CountOfBox { get; set; }
+        public decimal PosPrice { get; set; }
+        public decimal DefaultPledge { get; set; }
+        public decimal ActAmount { get; set; }
+        public decimal FluxProfit { get; set; }
+        public decimal FluxAmount { get; set; }
+        public int Sort { get; set; }
+        public int BrandType { get; set; }
+        public string Cover { get; set; }
+        public string LinkUrl { get; set; }
+        public string Name { get; set; }
+        public int Version { get; set; }
+        public int DelFlag { get; set; }
+        public DateTime? UpdateTime { get; set; }
+        public DateTime? CreateTime { get; set; }
+        public int ExchangeFlag { get; set; }
+        public string LabelText { get; set; }
+        public string ExchangeType { get; set; }
+        public int DisplayFlag { get; set; }
+        public int RatioFlag { get; set; }
+        public int MerchantFlag { get; set; }
+        public string MerchantDisplay { get; set; }
+        public int AdvanceFlag { get; set; }
+        public int ReplenishFlag { get; set; }
+        public int TotalMethod { get; set; }
+        public decimal ActPrice { get; set; }
+        public int ReplenishNum { get; set; }
+        public string BrandDetail { get; set; }
+        public int PledgeStatus { get; set; }
+        public int PledgeDisplay { get; set; }
+        public string BindRange { get; set; }
+        public int PledgeType { get; set; }
+        public string ManyPledge { get; set; }
+        public int ProfitStatus { get; set; }
+        public int Status { get; set; }
+        public string UpdateBy { get; set; }
+        public decimal NonActAmount { get; set; }
+    }
+}

+ 17 - 0
JavaProductModels/KxsBrandSort.cs

@@ -0,0 +1,17 @@
+using System;
+using System.Collections.Generic;
+
+namespace MySystem.JavaProductModels
+{
+    public partial class KxsBrandSort
+    {
+        public int Id { get; set; }
+        public int Sort { get; set; }
+        public int BrandId { get; set; }
+        public int UserId { get; set; }
+        public int Version { get; set; }
+        public string DelFlag { get; set; }
+        public DateTime? UpdateTime { get; set; }
+        public DateTime? CreateTime { get; set; }
+    }
+}

+ 32 - 0
JavaProductModels/KxsGdOrder.cs

@@ -0,0 +1,32 @@
+using System;
+using System.Collections.Generic;
+
+namespace MySystem.JavaProductModels
+{
+    public partial class KxsGdOrder
+    {
+        public int Id { get; set; }
+        public string AddressDetail { get; set; }
+        public string Address { get; set; }
+        public string ReceiveMobile { get; set; }
+        public string ReceiveName { get; set; }
+        public string IdcardNo { get; set; }
+        public string ErpNo { get; set; }
+        public string ErpName { get; set; }
+        public string OrderNo { get; set; }
+        public string GdMobile { get; set; }
+        public int Status { get; set; }
+        public string Remark { get; set; }
+        public string UserName { get; set; }
+        public string City { get; set; }
+        public string Province { get; set; }
+        public string ProductName { get; set; }
+        public decimal FirstRechargeAmount { get; set; }
+        public string Iccid { get; set; }
+        public int Version { get; set; }
+        public int DelFlag { get; set; }
+        public DateTime? UpdateTime { get; set; }
+        public DateTime? CreateTime { get; set; }
+        public string EmployNum { get; set; }
+    }
+}

+ 28 - 0
JavaProductModels/KxsGdReport.cs

@@ -0,0 +1,28 @@
+using System;
+using System.Collections.Generic;
+
+namespace MySystem.JavaProductModels
+{
+    public partial class KxsGdReport
+    {
+        public int Id { get; set; }
+        public int IsCheck { get; set; }
+        public string GdMobile { get; set; }
+        public string GdSn { get; set; }
+        public int Status { get; set; }
+        public string Remark { get; set; }
+        public string PutMobile { get; set; }
+        public string PutName { get; set; }
+        public string City { get; set; }
+        public string Province { get; set; }
+        public string UserCode { get; set; }
+        public string Username { get; set; }
+        public int UserId { get; set; }
+        public int Version { get; set; }
+        public int DelFlag { get; set; }
+        public DateTime? UpdateTime { get; set; }
+        public DateTime? CreateTime { get; set; }
+        public int PutType { get; set; }
+        public int GdOrderId { get; set; }
+    }
+}

+ 53 - 0
JavaProductModels/KxsMachine.cs

@@ -0,0 +1,53 @@
+using System;
+using System.Collections.Generic;
+
+namespace MySystem.JavaProductModels
+{
+    public partial class KxsMachine
+    {
+        public int Id { get; set; }
+        public string BatchNo { get; set; }
+        public int PreUserId { get; set; }
+        public int ReturnStatus { get; set; }
+        public decimal? SourcePledge { get; set; }
+        public int IsOpAct { get; set; }
+        public int IsSupply { get; set; }
+        public int DownFeeFlag { get; set; }
+        public int PartnerId { get; set; }
+        public int LeaderId { get; set; }
+        public string WarehouseName { get; set; }
+        public int UpFeeFlag { get; set; }
+        public int IsFirst { get; set; }
+        public int Status { get; set; }
+        public int BindStatus { get; set; }
+        public int IsAct { get; set; }
+        public decimal MachineRatio { get; set; }
+        public string BoxSn { get; set; }
+        public DateTime? DeliveryTime { get; set; }
+        public DateTime? ActTime { get; set; }
+        public DateTime? BindTime { get; set; }
+        public string AllotPath { get; set; }
+        public decimal CashPledge { get; set; }
+        public int MachineType { get; set; }
+        public DateTime? RecycleEndTime { get; set; }
+        public int RecycleStatus { get; set; }
+        public int BrandId { get; set; }
+        public int MerchantId { get; set; }
+        public int UserId { get; set; }
+        public int WarehouseId { get; set; }
+        public string PosSn { get; set; }
+        public int Version { get; set; }
+        public int DelFlag { get; set; }
+        public DateTime? UpdateTime { get; set; }
+        public DateTime? CreateTime { get; set; }
+        public decimal ScanQrTrade { get; set; }
+        public decimal DebitCardTrade { get; set; }
+        public decimal CreditTrade { get; set; }
+        public string SourcePosSn { get; set; }
+        public string DevLocation { get; set; }
+        public decimal SecondFee { get; set; }
+        public int PosType { get; set; }
+        public string DeviceType { get; set; }
+        public string DeviceCode { get; set; }
+    }
+}

+ 22 - 0
JavaProductModels/KxsMachineAward.cs

@@ -0,0 +1,22 @@
+using System;
+using System.Collections.Generic;
+
+namespace MySystem.JavaProductModels
+{
+    public partial class KxsMachineAward
+    {
+        public int Id { get; set; }
+        public decimal Amount { get; set; }
+        public int VariationType { get; set; }
+        public string Username { get; set; }
+        public string UserCode { get; set; }
+        public int UserId { get; set; }
+        public int MachineId { get; set; }
+        public string PosSn { get; set; }
+        public DateTime? UpdateTime { get; set; }
+        public DateTime? CreateTime { get; set; }
+        public int DelFlag { get; set; }
+        public int Version { get; set; }
+        public int AwardType { get; set; }
+    }
+}

+ 22 - 0
JavaProductModels/KxsMachineCashOrder.cs

@@ -0,0 +1,22 @@
+using System;
+using System.Collections.Generic;
+
+namespace MySystem.JavaProductModels
+{
+    public partial class KxsMachineCashOrder
+    {
+        public int Id { get; set; }
+        public string UserCode { get; set; }
+        public string Username { get; set; }
+        public int MachineId { get; set; }
+        public int MachineApplyId { get; set; }
+        public int ShopOrderId { get; set; }
+        public string UpdateBy { get; set; }
+        public string CreateBy { get; set; }
+        public int Version { get; set; }
+        public string DelFlag { get; set; }
+        public DateTime? UpdateTime { get; set; }
+        public DateTime? CreateTime { get; set; }
+        public int UserId { get; set; }
+    }
+}

+ 20 - 0
JavaProductModels/KxsMachineCirculationLog.cs

@@ -0,0 +1,20 @@
+using System;
+using System.Collections.Generic;
+
+namespace MySystem.JavaProductModels
+{
+    public partial class KxsMachineCirculationLog
+    {
+        public int Id { get; set; }
+        public string SourceSn { get; set; }
+        public int OrderId { get; set; }
+        public int UserId { get; set; }
+        public string PidPath { get; set; }
+        public int Pid { get; set; }
+        public int MachineId { get; set; }
+        public int Version { get; set; }
+        public int DelFlag { get; set; }
+        public DateTime? UpdateTime { get; set; }
+        public DateTime? CreateTime { get; set; }
+    }
+}

+ 35 - 0
JavaProductModels/KxsMachineCutBind.cs

@@ -0,0 +1,35 @@
+using System;
+using System.Collections.Generic;
+
+namespace MySystem.JavaProductModels
+{
+    public partial class KxsMachineCutBind
+    {
+        public int Id { get; set; }
+        public string CutPosSn { get; set; }
+        public int CutBrandId { get; set; }
+        public string UserCode { get; set; }
+        public string Username { get; set; }
+        public string OutWhsAddress { get; set; }
+        public string OutWhsMobile { get; set; }
+        public string OutWhsName { get; set; }
+        public int OutWhsId { get; set; }
+        public string ToWhsAddress { get; set; }
+        public string ToWhsMobile { get; set; }
+        public string UpdateBy { get; set; }
+        public string ToWhsName { get; set; }
+        public int ToWhsId { get; set; }
+        public string Remark { get; set; }
+        public int CutType { get; set; }
+        public string CreateBy { get; set; }
+        public int UserId { get; set; }
+        public int BrandId { get; set; }
+        public string PosSn { get; set; }
+        public int Version { get; set; }
+        public string DelFlag { get; set; }
+        public DateTime? UpdateTime { get; set; }
+        public DateTime? CreateTime { get; set; }
+        public string OrderSn { get; set; }
+        public int IsNotify { get; set; }
+    }
+}

+ 17 - 0
JavaProductModels/KxsMachineDeduct.cs

@@ -0,0 +1,17 @@
+using System;
+using System.Collections.Generic;
+
+namespace MySystem.JavaProductModels
+{
+    public partial class KxsMachineDeduct
+    {
+        public int Id { get; set; }
+        public string Remark { get; set; }
+        public string PosSn { get; set; }
+        public int Version { get; set; }
+        public int DelFlag { get; set; }
+        public DateTime? UpdateTime { get; set; }
+        public DateTime? CreateTime { get; set; }
+        public int? BrandId { get; set; }
+    }
+}

+ 19 - 0
JavaProductModels/KxsMachineExpInfo.cs

@@ -0,0 +1,19 @@
+using System;
+using System.Collections.Generic;
+
+namespace MySystem.JavaProductModels
+{
+    public partial class KxsMachineExpInfo
+    {
+        public int Id { get; set; }
+        public int UserId { get; set; }
+        public int MachineId { get; set; }
+        public int AdvanceId { get; set; }
+        public string UpdateBy { get; set; }
+        public string CreateBy { get; set; }
+        public int Version { get; set; }
+        public string DelFlag { get; set; }
+        public DateTime? UpdateTime { get; set; }
+        public DateTime? CreateTime { get; set; }
+    }
+}

+ 22 - 0
JavaProductModels/KxsMachinePledge.cs

@@ -0,0 +1,22 @@
+using System;
+using System.Collections.Generic;
+
+namespace MySystem.JavaProductModels
+{
+    public partial class KxsMachinePledge
+    {
+        public int Id { get; set; }
+        public string Result { get; set; }
+        public int? BrandId { get; set; }
+        public string CreateBy { get; set; }
+        public string Remark { get; set; }
+        public decimal AfterPledge { get; set; }
+        public decimal BeforePledge { get; set; }
+        public string PosSn { get; set; }
+        public int UserId { get; set; }
+        public int Version { get; set; }
+        public int DelFlag { get; set; }
+        public DateTime? UpdateTime { get; set; }
+        public DateTime? CreateTime { get; set; }
+    }
+}

+ 26 - 0
JavaProductModels/KxsMachineRatio.cs

@@ -0,0 +1,26 @@
+using System;
+using System.Collections.Generic;
+
+namespace MySystem.JavaProductModels
+{
+    public partial class KxsMachineRatio
+    {
+        public int Id { get; set; }
+        public int MachineId { get; set; }
+        public int Status { get; set; }
+        public int MerchantId { get; set; }
+        public string Result { get; set; }
+        public int BrandId { get; set; }
+        public string CreateBy { get; set; }
+        public string Remark { get; set; }
+        public decimal Ratio { get; set; }
+        public string PosSn { get; set; }
+        public int UserId { get; set; }
+        public int Version { get; set; }
+        public int DelFlag { get; set; }
+        public DateTime? UpdateTime { get; set; }
+        public DateTime? CreateTime { get; set; }
+        public int? PosUserId { get; set; }
+        public decimal BeforeRatio { get; set; }
+    }
+}

+ 25 - 0
JavaProductModels/KxsMachineTrack.cs

@@ -0,0 +1,25 @@
+using System;
+using System.Collections.Generic;
+
+namespace MySystem.JavaProductModels
+{
+    public partial class KxsMachineTrack
+    {
+        public int Id { get; set; }
+        public int ChangeType { get; set; }
+        public int TrackType { get; set; }
+        public int BrandId { get; set; }
+        public int MachineId { get; set; }
+        public int AfterUserId { get; set; }
+        public int BeforeUserId { get; set; }
+        public int Version { get; set; }
+        public int DelFlag { get; set; }
+        public DateTime? UpdateTime { get; set; }
+        public DateTime? CreateTime { get; set; }
+        public int PartnerId { get; set; }
+        public string PosSn { get; set; }
+        public int BeforeWhsId { get; set; }
+        public int AfterWhsId { get; set; }
+        public string Remark { get; set; }
+    }
+}

+ 24 - 0
JavaProductModels/KxsMachineTransfer.cs

@@ -0,0 +1,24 @@
+using System;
+using System.Collections.Generic;
+
+namespace MySystem.JavaProductModels
+{
+    public partial class KxsMachineTransfer
+    {
+        public int Id { get; set; }
+        public string ToUserCode { get; set; }
+        public string ToUserName { get; set; }
+        public int MachineId { get; set; }
+        public int TransferType { get; set; }
+        public int MachineType { get; set; }
+        public int ToUserId { get; set; }
+        public int BrandId { get; set; }
+        public int SendUserId { get; set; }
+        public string MachineSn { get; set; }
+        public int Version { get; set; }
+        public int DelFlag { get; set; }
+        public DateTime? UpdateTime { get; set; }
+        public DateTime? CreateTime { get; set; }
+        public string Remark { get; set; }
+    }
+}

+ 21 - 0
JavaProductModels/KxsMachineUnbind.cs

@@ -0,0 +1,21 @@
+using System;
+using System.Collections.Generic;
+
+namespace MySystem.JavaProductModels
+{
+    public partial class KxsMachineUnbind
+    {
+        public int Id { get; set; }
+        public string ApplyNo { get; set; }
+        public int MchId { get; set; }
+        public string CreateBy { get; set; }
+        public string Remark { get; set; }
+        public int UserId { get; set; }
+        public int BrandId { get; set; }
+        public string PosSn { get; set; }
+        public int Version { get; set; }
+        public string DelFlag { get; set; }
+        public DateTime? UpdateTime { get; set; }
+        public DateTime? CreateTime { get; set; }
+    }
+}

+ 30 - 0
JavaProductModels/KxsMerchant.cs

@@ -0,0 +1,30 @@
+using System;
+using System.Collections.Generic;
+
+namespace MySystem.JavaProductModels
+{
+    public partial class KxsMerchant
+    {
+        public int Id { get; set; }
+        public string Remark { get; set; }
+        public int StandardMonths { get; set; }
+        public int StandardStatus { get; set; }
+        public int MakerUserId { get; set; }
+        public int IsMaker { get; set; }
+        public string Address { get; set; }
+        public int Status { get; set; }
+        public int BrandId { get; set; }
+        public string MerchantPhone { get; set; }
+        public int UserId { get; set; }
+        public int MachineId { get; set; }
+        public string MerchantCard { get; set; }
+        public string MerchantName { get; set; }
+        public string MerchantNo { get; set; }
+        public int Version { get; set; }
+        public int DelFlag { get; set; }
+        public DateTime? UpdateTime { get; set; }
+        public DateTime? CreateTime { get; set; }
+        public decimal TotalAmt { get; set; }
+        public DateTime? StandardTime { get; set; }
+    }
+}

+ 26 - 0
JavaProductModels/KxsMerchantReturn.cs

@@ -0,0 +1,26 @@
+using System;
+using System.Collections.Generic;
+
+namespace MySystem.JavaProductModels
+{
+    public partial class KxsMerchantReturn
+    {
+        public int Id { get; set; }
+        public int PayKind { get; set; }
+        public decimal ReturnAmt { get; set; }
+        public int Status { get; set; }
+        public int MchId { get; set; }
+        public int UserId { get; set; }
+        public string OrderSn { get; set; }
+        public string Remark { get; set; }
+        public string UpdateBy { get; set; }
+        public string CreateBy { get; set; }
+        public string BankName { get; set; }
+        public string BankNo { get; set; }
+        public string AliAccount { get; set; }
+        public DateTime? UpdateTime { get; set; }
+        public DateTime? CreateTime { get; set; }
+        public string DelFlag { get; set; }
+        public int Version { get; set; }
+    }
+}

+ 25 - 0
JavaProductModels/KxsMerchantTrade.cs

@@ -0,0 +1,25 @@
+using System;
+using System.Collections.Generic;
+
+namespace MySystem.JavaProductModels
+{
+    public partial class KxsMerchantTrade
+    {
+        public int Id { get; set; }
+        public string LvKey { get; set; }
+        public int CloudPayFlag { get; set; }
+        public int DebitTopFlag { get; set; }
+        public int CardType { get; set; }
+        public string TradeNo { get; set; }
+        public string PosSn { get; set; }
+        public string UserCode { get; set; }
+        public string Username { get; set; }
+        public int BrandId { get; set; }
+        public decimal TradeAmt { get; set; }
+        public long MchId { get; set; }
+        public int Version { get; set; }
+        public string DelFlag { get; set; }
+        public DateTime? UpdateTime { get; set; }
+        public DateTime? CreateTime { get; set; }
+    }
+}

+ 20 - 0
JavaProductModels/KxsMerchantUser.cs

@@ -0,0 +1,20 @@
+using System;
+using System.Collections.Generic;
+
+namespace MySystem.JavaProductModels
+{
+    public partial class KxsMerchantUser
+    {
+        public int Id { get; set; }
+        public int Status { get; set; }
+        public string IdCard { get; set; }
+        public string Username { get; set; }
+        public string Phone { get; set; }
+        public string UpdateBy { get; set; }
+        public string CreateBy { get; set; }
+        public int Version { get; set; }
+        public string DelFlag { get; set; }
+        public DateTime? UpdateTime { get; set; }
+        public DateTime? CreateTime { get; set; }
+    }
+}

+ 22 - 0
JavaProductModels/KxsShopCate.cs

@@ -0,0 +1,22 @@
+using System;
+using System.Collections.Generic;
+
+namespace MySystem.JavaProductModels
+{
+    public partial class KxsShopCate
+    {
+        public int Id { get; set; }
+        public string ColId { get; set; }
+        public int IsShow { get; set; }
+        public int Sort { get; set; }
+        public int Status { get; set; }
+        public string IconUrl { get; set; }
+        public int Level { get; set; }
+        public int Pid { get; set; }
+        public string Name { get; set; }
+        public int Version { get; set; }
+        public int DelFlag { get; set; }
+        public DateTime? UpdateTime { get; set; }
+        public DateTime? CreateTime { get; set; }
+    }
+}

+ 28 - 0
JavaProductModels/KxsShopGoods.cs

@@ -0,0 +1,28 @@
+using System;
+using System.Collections.Generic;
+
+namespace MySystem.JavaProductModels
+{
+    public partial class KxsShopGoods
+    {
+        public int Id { get; set; }
+        public string SpecList { get; set; }
+        public int Sort { get; set; }
+        public DateTime? DownTime { get; set; }
+        public DateTime? UpTime { get; set; }
+        public int GoodsType { get; set; }
+        public int StartByCount { get; set; }
+        public int LimitCount { get; set; }
+        public string ColId { get; set; }
+        public int Status { get; set; }
+        public string Details { get; set; }
+        public string Subtitle { get; set; }
+        public decimal Price { get; set; }
+        public string GoodsName { get; set; }
+        public string PicUrl { get; set; }
+        public int Version { get; set; }
+        public int DelFlag { get; set; }
+        public DateTime? UpdateTime { get; set; }
+        public DateTime? CreateTime { get; set; }
+    }
+}

+ 17 - 0
JavaProductModels/KxsShopGoodsPic.cs

@@ -0,0 +1,17 @@
+using System;
+using System.Collections.Generic;
+
+namespace MySystem.JavaProductModels
+{
+    public partial class KxsShopGoodsPic
+    {
+        public int Id { get; set; }
+        public string Url { get; set; }
+        public int Sort { get; set; }
+        public int GoodsId { get; set; }
+        public int Version { get; set; }
+        public int DelFlag { get; set; }
+        public DateTime? UpdateTime { get; set; }
+        public DateTime? CreateTime { get; set; }
+    }
+}

+ 22 - 0
JavaProductModels/KxsShopGoodsSku.cs

@@ -0,0 +1,22 @@
+using System;
+using System.Collections.Generic;
+
+namespace MySystem.JavaProductModels
+{
+    public partial class KxsShopGoodsSku
+    {
+        public int Id { get; set; }
+        public string Specifications { get; set; }
+        public string Image { get; set; }
+        public int Sales { get; set; }
+        public int StockNum { get; set; }
+        public decimal Price { get; set; }
+        public int StartByCount { get; set; }
+        public int LimitCount { get; set; }
+        public int GoodId { get; set; }
+        public int Version { get; set; }
+        public int DelFlag { get; set; }
+        public DateTime? UpdateTime { get; set; }
+        public DateTime? CreateTime { get; set; }
+    }
+}

+ 18 - 0
JavaProductModels/KxsShopGoodsSpec.cs

@@ -0,0 +1,18 @@
+using System;
+using System.Collections.Generic;
+
+namespace MySystem.JavaProductModels
+{
+    public partial class KxsShopGoodsSpec
+    {
+        public int Id { get; set; }
+        public int Sort { get; set; }
+        public int GoodsId { get; set; }
+        public string Value { get; set; }
+        public string Specifications { get; set; }
+        public int Version { get; set; }
+        public int DelFlag { get; set; }
+        public DateTime? UpdateTime { get; set; }
+        public DateTime? CreateTime { get; set; }
+    }
+}

+ 38 - 0
JavaProductModels/KxsShopOrder.cs

@@ -0,0 +1,38 @@
+using System;
+using System.Collections.Generic;
+
+namespace MySystem.JavaProductModels
+{
+    public partial class KxsShopOrder
+    {
+        public int Id { get; set; }
+        public int TopUserId { get; set; }
+        public decimal ReturnPrice { get; set; }
+        public string UpdateBy { get; set; }
+        public string ReturnReason { get; set; }
+        public int OrderType { get; set; }
+        public int WarehouseId { get; set; }
+        public string TradeNo { get; set; }
+        public decimal PayPrice { get; set; }
+        public decimal TotalPrice { get; set; }
+        public DateTime? ReturnTime { get; set; }
+        public int ReturnStatus { get; set; }
+        public int Status { get; set; }
+        public string ErpName { get; set; }
+        public string ErpSn { get; set; }
+        public string Address { get; set; }
+        public string Phone { get; set; }
+        public string Consignee { get; set; }
+        public string Remark { get; set; }
+        public DateTime? SendTime { get; set; }
+        public DateTime? PayTime { get; set; }
+        public int PayType { get; set; }
+        public int GetMode { get; set; }
+        public int UserId { get; set; }
+        public string OrderSn { get; set; }
+        public int Version { get; set; }
+        public int DelFlag { get; set; }
+        public DateTime? UpdateTime { get; set; }
+        public DateTime? CreateTime { get; set; }
+    }
+}

+ 22 - 0
JavaProductModels/KxsShopOrderInfo.cs

@@ -0,0 +1,22 @@
+using System;
+using System.Collections.Generic;
+
+namespace MySystem.JavaProductModels
+{
+    public partial class KxsShopOrderInfo
+    {
+        public int Id { get; set; }
+        public string Specifications { get; set; }
+        public int SkuId { get; set; }
+        public int OrderId { get; set; }
+        public string GoodsName { get; set; }
+        public string PicUrl { get; set; }
+        public decimal GoodsPrice { get; set; }
+        public int Number { get; set; }
+        public int GoodsId { get; set; }
+        public int Version { get; set; }
+        public int DelFlag { get; set; }
+        public DateTime? UpdateTime { get; set; }
+        public DateTime? CreateTime { get; set; }
+    }
+}

+ 22 - 0
JavaProductModels/KxsTicket.cs

@@ -0,0 +1,22 @@
+using System;
+using System.Collections.Generic;
+
+namespace MySystem.JavaProductModels
+{
+    public partial class KxsTicket
+    {
+        public int Id { get; set; }
+        public int PartnerId { get; set; }
+        public int LeaderId { get; set; }
+        public int Status { get; set; }
+        public int OrderId { get; set; }
+        public string TicketAllotPath { get; set; }
+        public int TicketType { get; set; }
+        public string TicketCode { get; set; }
+        public int UserId { get; set; }
+        public int Version { get; set; }
+        public int DelFlag { get; set; }
+        public DateTime? UpdateTime { get; set; }
+        public DateTime? CreateTime { get; set; }
+    }
+}

+ 24 - 0
JavaProductModels/KxsTicketTransfer.cs

@@ -0,0 +1,24 @@
+using System;
+using System.Collections.Generic;
+
+namespace MySystem.JavaProductModels
+{
+    public partial class KxsTicketTransfer
+    {
+        public int Id { get; set; }
+        public string OrderSn { get; set; }
+        public string SendUserCode { get; set; }
+        public string SendUserName { get; set; }
+        public string ToUserCode { get; set; }
+        public string ToUserName { get; set; }
+        public int TicketType { get; set; }
+        public int TransferNum { get; set; }
+        public int ToUserId { get; set; }
+        public int SendUserId { get; set; }
+        public int Version { get; set; }
+        public int DelFlag { get; set; }
+        public DateTime? UpdateTime { get; set; }
+        public DateTime? CreateTime { get; set; }
+        public string Remark { get; set; }
+    }
+}

+ 17 - 0
JavaProductModels/KxsTicketTransferInfo.cs

@@ -0,0 +1,17 @@
+using System;
+using System.Collections.Generic;
+
+namespace MySystem.JavaProductModels
+{
+    public partial class KxsTicketTransferInfo
+    {
+        public int Id { get; set; }
+        public string TicketCode { get; set; }
+        public string OrderSn { get; set; }
+        public int TicketId { get; set; }
+        public int Version { get; set; }
+        public int DelFlag { get; set; }
+        public DateTime? UpdateTime { get; set; }
+        public DateTime? CreateTime { get; set; }
+    }
+}

+ 22 - 0
JavaProductModels/KxsTicketUpgrade.cs

@@ -0,0 +1,22 @@
+using System;
+using System.Collections.Generic;
+
+namespace MySystem.JavaProductModels
+{
+    public partial class KxsTicketUpgrade
+    {
+        public int Id { get; set; }
+        public int SourceCount { get; set; }
+        public string SourceTickets { get; set; }
+        public string UpTickets { get; set; }
+        public int UpCount { get; set; }
+        public string Remark { get; set; }
+        public int UserId { get; set; }
+        public int Version { get; set; }
+        public string DelFlag { get; set; }
+        public DateTime? UpdateTime { get; set; }
+        public DateTime? CreateTime { get; set; }
+        public string Username { get; set; }
+        public string UserCode { get; set; }
+    }
+}

+ 16 - 0
JavaProductModels/UndoLog.cs

@@ -0,0 +1,16 @@
+using System;
+using System.Collections.Generic;
+
+namespace MySystem.JavaProductModels
+{
+    public partial class UndoLog
+    {
+        public long BranchId { get; set; }
+        public string Xid { get; set; }
+        public string Context { get; set; }
+        public byte[] RollbackInfo { get; set; }
+        public int LogStatus { get; set; }
+        public DateTime LogCreated { get; set; }
+        public DateTime LogModified { get; set; }
+    }
+}

+ 3018 - 0
JavaProductModels/WebCMSEntities.cs

@@ -0,0 +1,3018 @@
+using System;
+using Microsoft.EntityFrameworkCore;
+using Microsoft.EntityFrameworkCore.Metadata;
+
+namespace MySystem.JavaProductModels
+{
+    public partial class WebCMSEntities : DbContext
+    {
+        public WebCMSEntities()
+        {
+        }
+
+        public WebCMSEntities(DbContextOptions<WebCMSEntities> options)
+            : base(options)
+        {
+        }
+
+        public virtual DbSet<KxsBrand> KxsBrand { get; set; }
+        public virtual DbSet<KxsBrandSort> KxsBrandSort { get; set; }
+        public virtual DbSet<KxsGdOrder> KxsGdOrder { get; set; }
+        public virtual DbSet<KxsGdReport> KxsGdReport { get; set; }
+        public virtual DbSet<KxsMachine> KxsMachine { get; set; }
+        public virtual DbSet<KxsMachineAward> KxsMachineAward { get; set; }
+        public virtual DbSet<KxsMachineCashOrder> KxsMachineCashOrder { get; set; }
+        public virtual DbSet<KxsMachineCirculationLog> KxsMachineCirculationLog { get; set; }
+        public virtual DbSet<KxsMachineCutBind> KxsMachineCutBind { get; set; }
+        public virtual DbSet<KxsMachineDeduct> KxsMachineDeduct { get; set; }
+        public virtual DbSet<KxsMachineExpInfo> KxsMachineExpInfo { get; set; }
+        public virtual DbSet<KxsMachinePledge> KxsMachinePledge { get; set; }
+        public virtual DbSet<KxsMachineRatio> KxsMachineRatio { get; set; }
+        public virtual DbSet<KxsMachineTrack> KxsMachineTrack { get; set; }
+        public virtual DbSet<KxsMachineTransfer> KxsMachineTransfer { get; set; }
+        public virtual DbSet<KxsMachineUnbind> KxsMachineUnbind { get; set; }
+        public virtual DbSet<KxsMerchant> KxsMerchant { get; set; }
+        public virtual DbSet<KxsMerchantReturn> KxsMerchantReturn { get; set; }
+        public virtual DbSet<KxsMerchantTrade> KxsMerchantTrade { get; set; }
+        public virtual DbSet<KxsMerchantUser> KxsMerchantUser { get; set; }
+        public virtual DbSet<KxsShopCate> KxsShopCate { get; set; }
+        public virtual DbSet<KxsShopGoods> KxsShopGoods { get; set; }
+        public virtual DbSet<KxsShopGoodsPic> KxsShopGoodsPic { get; set; }
+        public virtual DbSet<KxsShopGoodsSku> KxsShopGoodsSku { get; set; }
+        public virtual DbSet<KxsShopGoodsSpec> KxsShopGoodsSpec { get; set; }
+        public virtual DbSet<KxsShopOrder> KxsShopOrder { get; set; }
+        public virtual DbSet<KxsShopOrderInfo> KxsShopOrderInfo { get; set; }
+        public virtual DbSet<KxsTicket> KxsTicket { get; set; }
+        public virtual DbSet<KxsTicketTransfer> KxsTicketTransfer { get; set; }
+        public virtual DbSet<KxsTicketTransferInfo> KxsTicketTransferInfo { get; set; }
+        public virtual DbSet<KxsTicketUpgrade> KxsTicketUpgrade { get; set; }
+        public virtual DbSet<UndoLog> UndoLog { get; set; }
+
+        protected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder)
+        {
+            if (!optionsBuilder.IsConfigured)
+            {
+                optionsBuilder.UseMySql(Library.ConfigurationManager.AppSettings["JavaProductSqlConnStr"].ToString(), x => x.ServerVersion("5.7.17-mysql"));
+            }
+        }
+
+        protected override void OnModelCreating(ModelBuilder modelBuilder)
+        {
+            modelBuilder.Entity<KxsBrand>(entity =>
+            {
+                entity.ToTable("kxs_brand");
+
+                entity.HasComment("客小爽品牌表");
+
+                entity.Property(e => e.Id)
+                    .HasColumnName("id")
+                    .HasComment("主键ID");
+
+                entity.Property(e => e.ActAmount)
+                    .HasColumnName("act_amount")
+                    .HasColumnType("decimal(18,2)")
+                    .HasComment("激活金额");
+
+                entity.Property(e => e.ActPrice)
+                    .HasColumnName("act_price")
+                    .HasColumnType("decimal(18,2)")
+                    .HasComment("激活1户计多少元");
+
+                entity.Property(e => e.AdvanceFlag)
+                    .HasColumnName("advance_flag")
+                    .HasDefaultValueSql("'1'")
+                    .HasComment("是否支持预发(0:不支持,1:支持)");
+
+                entity.Property(e => e.BindRange)
+                    .HasColumnName("bind_range")
+                    .HasColumnType("varchar(10)")
+                    .HasComment("功能显示范围(0:未绑定机具,1:已绑定机具)")
+                    .HasCharSet("utf8mb3")
+                    .HasCollation("utf8mb3_general_ci");
+
+                entity.Property(e => e.BrandDetail)
+                    .HasColumnName("brand_detail")
+                    .HasColumnType("longtext")
+                    .HasComment("产品详情")
+                    .HasCharSet("utf8mb3")
+                    .HasCollation("utf8mb3_general_ci");
+
+                entity.Property(e => e.BrandType)
+                    .HasColumnName("brand_type")
+                    .HasComment("类型 0电签 1大pos");
+
+                entity.Property(e => e.CountOfBox)
+                    .HasColumnName("count_of_box")
+                    .HasComment("每箱机具数");
+
+                entity.Property(e => e.Cover)
+                    .HasColumnName("cover")
+                    .HasColumnType("varchar(255)")
+                    .HasComment("封面图片")
+                    .HasCharSet("utf8mb3")
+                    .HasCollation("utf8mb3_general_ci");
+
+                entity.Property(e => e.CreateTime)
+                    .HasColumnName("create_time")
+                    .HasColumnType("datetime")
+                    .HasComment("新增时间");
+
+                entity.Property(e => e.DefaultPledge)
+                    .HasColumnName("default_pledge")
+                    .HasColumnType("decimal(18,2)")
+                    .HasComment("默认押金");
+
+                entity.Property(e => e.DelFlag)
+                    .HasColumnName("del_flag")
+                    .HasComment("删除标记,0未删除,1已删除");
+
+                entity.Property(e => e.DisplayFlag)
+                    .HasColumnName("display_flag")
+                    .HasDefaultValueSql("'1'")
+                    .HasComment("是否显示产品(0:不显示,1:显示)");
+
+                entity.Property(e => e.ExchangeFlag)
+                    .HasColumnName("exchange_flag")
+                    .HasComment("是否支持兑换");
+
+                entity.Property(e => e.ExchangeType)
+                    .HasColumnName("exchange_type")
+                    .HasColumnType("varchar(20)")
+                    .HasComment("兑换类型(10:大POS,11:大pos卷循环资格,20:电签,21电签循环资格)")
+                    .HasCharSet("utf8mb3")
+                    .HasCollation("utf8mb3_general_ci");
+
+                entity.Property(e => e.FluxAmount)
+                    .HasColumnName("flux_amount")
+                    .HasColumnType("decimal(18,2)")
+                    .HasComment("流量费");
+
+                entity.Property(e => e.FluxProfit)
+                    .HasColumnName("flux_profit")
+                    .HasColumnType("decimal(18,2)")
+                    .HasComment("流量费分佣");
+
+                entity.Property(e => e.LabelText)
+                    .HasColumnName("label_text")
+                    .HasColumnType("varchar(200)")
+                    .HasComment("标签json数据(style:样式,wordColor:文字颜色,backColor:背景颜色)")
+                    .HasCharSet("utf8mb3")
+                    .HasCollation("utf8mb3_general_ci");
+
+                entity.Property(e => e.LinkUrl)
+                    .HasColumnName("link_url")
+                    .HasColumnType("varchar(255)")
+                    .HasComment("跳转链接")
+                    .HasCharSet("utf8mb3")
+                    .HasCollation("utf8mb3_general_ci");
+
+                entity.Property(e => e.ManyPledge)
+                    .HasColumnName("many_pledge")
+                    .HasColumnType("varchar(50)")
+                    .HasComment("多押金设置(多个押金用\",\"隔开)")
+                    .HasCharSet("utf8mb3")
+                    .HasCollation("utf8mb3_general_ci");
+
+                entity.Property(e => e.MerchantDisplay)
+                    .HasColumnName("merchant_display")
+                    .HasColumnType("varchar(10)")
+                    .HasComment("商户显示信息(1:商户信息,2:月度交易额,3:月度交易额记录)")
+                    .HasCharSet("utf8mb3")
+                    .HasCollation("utf8mb3_general_ci");
+
+                entity.Property(e => e.MerchantFlag)
+                    .HasColumnName("merchant_flag")
+                    .HasDefaultValueSql("'1'")
+                    .HasComment("是否可转商户型创客(0:不支持,1:支持)");
+
+                entity.Property(e => e.Name)
+                    .HasColumnName("name")
+                    .HasColumnType("varchar(32)")
+                    .HasComment("品牌名称")
+                    .HasCharSet("utf8mb3")
+                    .HasCollation("utf8mb3_general_ci");
+
+                entity.Property(e => e.NonActAmount)
+                    .HasColumnName("non_act_amount")
+                    .HasColumnType("decimal(18,2)")
+                    .HasComment("无押激活金额");
+
+                entity.Property(e => e.PledgeDisplay)
+                    .HasColumnName("pledge_display")
+                    .HasDefaultValueSql("'1'")
+                    .HasComment("押金是否显示(0:不显示,1:显示)");
+
+                entity.Property(e => e.PledgeStatus)
+                    .HasColumnName("pledge_status")
+                    .HasDefaultValueSql("'1'")
+                    .HasComment("押金状态(0:关闭,1:开启)");
+
+                entity.Property(e => e.PledgeType)
+                    .HasColumnName("pledge_type")
+                    .HasComment("押金类型(0:固定数值,1:多个数值)");
+
+                entity.Property(e => e.PosPrice)
+                    .HasColumnName("pos_price")
+                    .HasColumnType("decimal(18,2)")
+                    .HasComment("品牌价格");
+
+                entity.Property(e => e.ProfitStatus)
+                    .HasColumnName("profit_status")
+                    .HasComment("分佣状态(0:未开启,1:开启)");
+
+                entity.Property(e => e.RatioFlag)
+                    .HasColumnName("ratio_flag")
+                    .HasDefaultValueSql("'1'")
+                    .HasComment("是否支持费率修改(0:不支持,1:支持)");
+
+                entity.Property(e => e.ReplenishFlag)
+                    .HasColumnName("replenish_flag")
+                    .HasDefaultValueSql("'1'")
+                    .HasComment("是否支持补货(0:不支持,1:支持)");
+
+                entity.Property(e => e.ReplenishNum)
+                    .HasColumnName("replenish_num")
+                    .HasDefaultValueSql("'10'")
+                    .HasComment("申请补货数量");
+
+                entity.Property(e => e.Sort)
+                    .HasColumnName("sort")
+                    .HasComment("排序");
+
+                entity.Property(e => e.Status)
+                    .HasColumnName("status")
+                    .HasDefaultValueSql("'1'")
+                    .HasComment("状态 0禁用 1正常");
+
+                entity.Property(e => e.TotalMethod)
+                    .HasColumnName("total_method")
+                    .HasComment("统计方式(0:实际交易额,1:激活商户数)");
+
+                entity.Property(e => e.UpdateBy)
+                    .HasColumnName("update_by")
+                    .HasColumnType("varchar(10)")
+                    .HasComment("操作人")
+                    .HasCharSet("utf8mb3")
+                    .HasCollation("utf8mb3_general_ci");
+
+                entity.Property(e => e.UpdateTime)
+                    .HasColumnName("update_time")
+                    .HasColumnType("datetime")
+                    .HasComment("更新时间");
+
+                entity.Property(e => e.Version)
+                    .HasColumnName("version")
+                    .HasComment("版本");
+            });
+
+            modelBuilder.Entity<KxsBrandSort>(entity =>
+            {
+                entity.ToTable("kxs_brand_sort");
+
+                entity.HasComment("品牌排序表");
+
+                entity.Property(e => e.Id)
+                    .HasColumnName("id")
+                    .HasComment("主键ID");
+
+                entity.Property(e => e.BrandId)
+                    .HasColumnName("brand_id")
+                    .HasComment("品牌ID");
+
+                entity.Property(e => e.CreateTime)
+                    .HasColumnName("create_time")
+                    .HasColumnType("datetime")
+                    .HasComment("新增时间");
+
+                entity.Property(e => e.DelFlag)
+                    .HasColumnName("del_flag")
+                    .HasColumnType("varchar(1)")
+                    .HasDefaultValueSql("'0'")
+                    .HasComment("删除标记,0未删除,1已删除")
+                    .HasCharSet("utf8mb3")
+                    .HasCollation("utf8mb3_general_ci");
+
+                entity.Property(e => e.Sort)
+                    .HasColumnName("sort")
+                    .HasDefaultValueSql("'100'")
+                    .HasComment("排序");
+
+                entity.Property(e => e.UpdateTime)
+                    .HasColumnName("update_time")
+                    .HasColumnType("datetime")
+                    .HasComment("更新时间");
+
+                entity.Property(e => e.UserId)
+                    .HasColumnName("user_id")
+                    .HasComment("用户ID");
+
+                entity.Property(e => e.Version)
+                    .HasColumnName("version")
+                    .HasComment("版本");
+            });
+
+            modelBuilder.Entity<KxsGdOrder>(entity =>
+            {
+                entity.ToTable("kxs_gd_order");
+
+                entity.HasComment("广电推送订单信息表");
+
+                entity.HasIndex(e => e.GdMobile)
+                    .HasName("mobile");
+
+                entity.Property(e => e.Id)
+                    .HasColumnName("id")
+                    .HasComment("主键ID");
+
+                entity.Property(e => e.Address)
+                    .HasColumnName("address")
+                    .HasColumnType("varchar(128)")
+                    .HasComment("收货详细地址")
+                    .HasCharSet("utf8mb3")
+                    .HasCollation("utf8mb3_general_ci");
+
+                entity.Property(e => e.AddressDetail)
+                    .HasColumnName("address_detail")
+                    .HasColumnType("varchar(128)")
+                    .HasComment("详细地址")
+                    .HasCharSet("utf8mb3")
+                    .HasCollation("utf8mb3_general_ci");
+
+                entity.Property(e => e.City)
+                    .HasColumnName("city")
+                    .HasColumnType("varchar(64)")
+                    .HasComment("城市")
+                    .HasCharSet("utf8mb3")
+                    .HasCollation("utf8mb3_general_ci");
+
+                entity.Property(e => e.CreateTime)
+                    .HasColumnName("create_time")
+                    .HasColumnType("datetime")
+                    .HasComment("新增时间");
+
+                entity.Property(e => e.DelFlag)
+                    .HasColumnName("del_flag")
+                    .HasComment("删除标记,0未删除,1已删除");
+
+                entity.Property(e => e.EmployNum)
+                    .HasColumnName("employ_num")
+                    .HasColumnType("varchar(64)")
+                    .HasComment("工号自定义参数")
+                    .HasCharSet("utf8mb3")
+                    .HasCollation("utf8mb3_general_ci");
+
+                entity.Property(e => e.ErpName)
+                    .HasColumnName("erp_name")
+                    .HasColumnType("varchar(128)")
+                    .HasComment("快递公司")
+                    .HasCharSet("utf8mb3")
+                    .HasCollation("utf8mb3_general_ci");
+
+                entity.Property(e => e.ErpNo)
+                    .HasColumnName("erp_no")
+                    .HasColumnType("varchar(64)")
+                    .HasComment("快递单号")
+                    .HasCharSet("utf8mb3")
+                    .HasCollation("utf8mb3_general_ci");
+
+                entity.Property(e => e.FirstRechargeAmount)
+                    .HasColumnName("first_recharge_amount")
+                    .HasColumnType("decimal(18,2)")
+                    .HasComment("首充金额");
+
+                entity.Property(e => e.GdMobile)
+                    .HasColumnName("gd_mobile")
+                    .HasColumnType("varchar(16)")
+                    .HasComment("广电手机号码")
+                    .HasCharSet("utf8mb3")
+                    .HasCollation("utf8mb3_general_ci");
+
+                entity.Property(e => e.Iccid)
+                    .HasColumnName("iccid")
+                    .HasColumnType("varchar(64)")
+                    .HasComment("广电sn")
+                    .HasCharSet("utf8mb3")
+                    .HasCollation("utf8mb3_general_ci");
+
+                entity.Property(e => e.IdcardNo)
+                    .HasColumnName("idcard_no")
+                    .HasColumnType("varchar(32)")
+                    .HasComment("身份证号")
+                    .HasCharSet("utf8mb3")
+                    .HasCollation("utf8mb3_general_ci");
+
+                entity.Property(e => e.OrderNo)
+                    .HasColumnName("order_no")
+                    .HasColumnType("varchar(64)")
+                    .HasComment("广电订单号")
+                    .HasCharSet("utf8mb3")
+                    .HasCollation("utf8mb3_general_ci");
+
+                entity.Property(e => e.ProductName)
+                    .HasColumnName("product_name")
+                    .HasColumnType("varchar(128)")
+                    .HasComment("产品名称")
+                    .HasCharSet("utf8mb3")
+                    .HasCollation("utf8mb3_general_ci");
+
+                entity.Property(e => e.Province)
+                    .HasColumnName("province")
+                    .HasColumnType("varchar(64)")
+                    .HasComment("省份")
+                    .HasCharSet("utf8mb3")
+                    .HasCollation("utf8mb3_general_ci");
+
+                entity.Property(e => e.ReceiveMobile)
+                    .HasColumnName("receive_mobile")
+                    .HasColumnType("varchar(16)")
+                    .HasComment("收货手机号")
+                    .HasCharSet("utf8mb3")
+                    .HasCollation("utf8mb3_general_ci");
+
+                entity.Property(e => e.ReceiveName)
+                    .HasColumnName("receive_name")
+                    .HasColumnType("varchar(32)")
+                    .HasComment("收货人")
+                    .HasCharSet("utf8mb3")
+                    .HasCollation("utf8mb3_general_ci");
+
+                entity.Property(e => e.Remark)
+                    .HasColumnName("remark")
+                    .HasColumnType("varchar(1000)")
+                    .HasComment("备注")
+                    .HasCharSet("utf8mb3")
+                    .HasCollation("utf8mb3_general_ci");
+
+                entity.Property(e => e.Status)
+                    .HasColumnName("status")
+                    .HasComment("状态");
+
+                entity.Property(e => e.UpdateTime)
+                    .HasColumnName("update_time")
+                    .HasColumnType("datetime")
+                    .HasComment("更新时间");
+
+                entity.Property(e => e.UserName)
+                    .HasColumnName("user_name")
+                    .HasColumnType("varchar(64)")
+                    .HasComment("入网姓名")
+                    .HasCharSet("utf8mb3")
+                    .HasCollation("utf8mb3_general_ci");
+
+                entity.Property(e => e.Version)
+                    .HasColumnName("version")
+                    .HasComment("版本");
+            });
+
+            modelBuilder.Entity<KxsGdReport>(entity =>
+            {
+                entity.ToTable("kxs_gd_report");
+
+                entity.HasComment("广电报备入网表");
+
+                entity.HasIndex(e => e.GdMobile)
+                    .HasName("gd_mobile");
+
+                entity.HasIndex(e => new { e.PutMobile, e.PutName })
+                    .HasName("query");
+
+                entity.Property(e => e.Id)
+                    .HasColumnName("id")
+                    .HasComment("主键ID");
+
+                entity.Property(e => e.City)
+                    .HasColumnName("city")
+                    .HasColumnType("varchar(64)")
+                    .HasComment("报备城市")
+                    .HasCharSet("utf8mb3")
+                    .HasCollation("utf8mb3_general_ci");
+
+                entity.Property(e => e.CreateTime)
+                    .HasColumnName("create_time")
+                    .HasColumnType("datetime")
+                    .HasComment("新增时间");
+
+                entity.Property(e => e.DelFlag)
+                    .HasColumnName("del_flag")
+                    .HasComment("删除标记,0未删除,1已删除");
+
+                entity.Property(e => e.GdMobile)
+                    .HasColumnName("gd_mobile")
+                    .HasColumnType("varchar(16)")
+                    .HasComment("广电手机号码")
+                    .HasCharSet("utf8mb3")
+                    .HasCollation("utf8mb3_general_ci");
+
+                entity.Property(e => e.GdOrderId)
+                    .HasColumnName("gd_order_id")
+                    .HasComment("广电订单ID");
+
+                entity.Property(e => e.GdSn)
+                    .HasColumnName("gd_sn")
+                    .HasColumnType("varchar(64)")
+                    .HasComment("sn码")
+                    .HasCharSet("utf8mb3")
+                    .HasCollation("utf8mb3_general_ci");
+
+                entity.Property(e => e.IsCheck)
+                    .HasColumnName("is_check")
+                    .HasComment("匹配状态 未匹配=0 匹配成功=1");
+
+                entity.Property(e => e.Province)
+                    .HasColumnName("province")
+                    .HasColumnType("varchar(64)")
+                    .HasComment("报备省份")
+                    .HasCharSet("utf8mb3")
+                    .HasCollation("utf8mb3_general_ci");
+
+                entity.Property(e => e.PutMobile)
+                    .HasColumnName("put_mobile")
+                    .HasColumnType("varchar(16)")
+                    .HasComment("入网手机号")
+                    .HasCharSet("utf8mb3")
+                    .HasCollation("utf8mb3_general_ci");
+
+                entity.Property(e => e.PutName)
+                    .HasColumnName("put_name")
+                    .HasColumnType("varchar(64)")
+                    .HasComment("入网姓名")
+                    .HasCharSet("utf8mb3")
+                    .HasCollation("utf8mb3_general_ci");
+
+                entity.Property(e => e.PutType)
+                    .HasColumnName("put_type")
+                    .HasComment("入网类型  0工号报备 1电渠报备");
+
+                entity.Property(e => e.Remark)
+                    .HasColumnName("remark")
+                    .HasColumnType("varchar(1000)")
+                    .HasComment("备注")
+                    .HasCharSet("utf8mb3")
+                    .HasCollation("utf8mb3_general_ci");
+
+                entity.Property(e => e.Status)
+                    .HasColumnName("status")
+                    .HasComment("状态 未处理=0 已作废=-1 报备成功=1");
+
+                entity.Property(e => e.UpdateTime)
+                    .HasColumnName("update_time")
+                    .HasColumnType("datetime")
+                    .HasComment("更新时间");
+
+                entity.Property(e => e.UserCode)
+                    .HasColumnName("user_code")
+                    .HasColumnType("varchar(32)")
+                    .HasComment("创客编号")
+                    .HasCharSet("utf8mb3")
+                    .HasCollation("utf8mb3_general_ci");
+
+                entity.Property(e => e.UserId)
+                    .HasColumnName("user_id")
+                    .HasComment("创客ID");
+
+                entity.Property(e => e.Username)
+                    .HasColumnName("username")
+                    .HasColumnType("varchar(32)")
+                    .HasComment("创客姓名")
+                    .HasCharSet("utf8mb3")
+                    .HasCollation("utf8mb3_general_ci");
+
+                entity.Property(e => e.Version)
+                    .HasColumnName("version")
+                    .HasComment("版本");
+            });
+
+            modelBuilder.Entity<KxsMachine>(entity =>
+            {
+                entity.ToTable("kxs_machine");
+
+                entity.HasComment("客小爽机具表");
+
+                entity.HasIndex(e => e.PosSn)
+                    .HasName("pos_sn")
+                    .IsUnique();
+
+                entity.HasIndex(e => e.WarehouseId)
+                    .HasName("whs_id");
+
+                entity.HasIndex(e => new { e.UserId, e.BindStatus })
+                    .HasName("recycleend");
+
+                entity.HasIndex(e => new { e.Status, e.PreUserId, e.WarehouseId, e.BrandId, e.PosSn })
+                    .HasName("pre_query");
+
+                entity.Property(e => e.Id)
+                    .HasColumnName("id")
+                    .HasComment("主键ID");
+
+                entity.Property(e => e.ActTime)
+                    .HasColumnName("act_time")
+                    .HasColumnType("datetime")
+                    .HasComment("激活时间");
+
+                entity.Property(e => e.AllotPath)
+                    .HasColumnName("allot_path")
+                    .HasColumnType("varchar(128)")
+                    .HasComment("机具轨迹路径")
+                    .HasCharSet("utf8mb3")
+                    .HasCollation("utf8mb3_general_ci");
+
+                entity.Property(e => e.BatchNo)
+                    .HasColumnName("batch_no")
+                    .HasColumnType("varchar(32)")
+                    .HasComment("业务批次号")
+                    .HasCharSet("utf8mb3")
+                    .HasCollation("utf8mb3_general_ci");
+
+                entity.Property(e => e.BindStatus)
+                    .HasColumnName("bind_status")
+                    .HasComment("绑定状态 0未绑定 1已绑定 2已解绑");
+
+                entity.Property(e => e.BindTime)
+                    .HasColumnName("bind_time")
+                    .HasColumnType("datetime")
+                    .HasComment("绑定时间");
+
+                entity.Property(e => e.BoxSn)
+                    .HasColumnName("box_sn")
+                    .HasColumnType("varchar(32)")
+                    .HasComment("箱码")
+                    .HasCharSet("utf8mb3")
+                    .HasCollation("utf8mb3_general_ci");
+
+                entity.Property(e => e.BrandId)
+                    .HasColumnName("brand_id")
+                    .HasComment("品牌ID");
+
+                entity.Property(e => e.CashPledge)
+                    .HasColumnName("cash_pledge")
+                    .HasColumnType("decimal(18,2)")
+                    .HasComment("机具押金");
+
+                entity.Property(e => e.CreateTime)
+                    .HasColumnName("create_time")
+                    .HasColumnType("datetime")
+                    .HasComment("新增时间");
+
+                entity.Property(e => e.CreditTrade)
+                    .HasColumnName("credit_trade")
+                    .HasColumnType("decimal(18,2)")
+                    .HasComment("贷记卡交易额");
+
+                entity.Property(e => e.DebitCardTrade)
+                    .HasColumnName("debit_card_trade")
+                    .HasColumnType("decimal(18,2)")
+                    .HasComment("借记卡交易额");
+
+                entity.Property(e => e.DelFlag)
+                    .HasColumnName("del_flag")
+                    .HasComment("删除标记,0未删除,1已删除");
+
+                entity.Property(e => e.DeliveryTime)
+                    .HasColumnName("delivery_time")
+                    .HasColumnType("datetime")
+                    .HasComment("出库时间");
+
+                entity.Property(e => e.DevLocation)
+                    .HasColumnName("dev_location")
+                    .HasColumnType("varchar(255)")
+                    .HasComment("机具地址")
+                    .HasCharSet("utf8mb3")
+                    .HasCollation("utf8mb3_general_ci");
+
+                entity.Property(e => e.DeviceCode)
+                    .HasColumnName("device_code")
+                    .HasColumnType("varchar(32)")
+                    .HasComment("设备型号")
+                    .HasCharSet("utf8mb3")
+                    .HasCollation("utf8mb3_general_ci");
+
+                entity.Property(e => e.DeviceType)
+                    .HasColumnName("device_type")
+                    .HasColumnType("varchar(64)")
+                    .HasComment("设备类型")
+                    .HasCharSet("utf8mb3")
+                    .HasCollation("utf8mb3_general_ci");
+
+                entity.Property(e => e.DownFeeFlag)
+                    .HasColumnName("down_fee_flag")
+                    .HasComment("费率调降标记 0未调 1已调");
+
+                entity.Property(e => e.IsAct)
+                    .HasColumnName("is_act")
+                    .HasComment("是否激活 0未激活 1已激活");
+
+                entity.Property(e => e.IsFirst)
+                    .HasColumnName("is_first")
+                    .HasComment("是否首台 0否 1是");
+
+                entity.Property(e => e.IsOpAct)
+                    .HasColumnName("is_op_act")
+                    .HasComment("补激活奖标记 0未补录 1已补录");
+
+                entity.Property(e => e.IsSupply)
+                    .HasColumnName("is_supply")
+                    .HasComment("补录标识 0未补录 1已补录");
+
+                entity.Property(e => e.LeaderId)
+                    .HasColumnName("leader_id")
+                    .HasComment("盟主用户ID");
+
+                entity.Property(e => e.MachineRatio)
+                    .HasColumnName("machine_ratio")
+                    .HasColumnType("decimal(18,2)")
+                    .HasDefaultValueSql("'0.60'")
+                    .HasComment("机具费率");
+
+                entity.Property(e => e.MachineType)
+                    .HasColumnName("machine_type")
+                    .HasComment("机具类型 0兑换机 1循环机");
+
+                entity.Property(e => e.MerchantId)
+                    .HasColumnName("merchant_id")
+                    .HasComment("商户ID");
+
+                entity.Property(e => e.PartnerId)
+                    .HasColumnName("partner_id")
+                    .HasComment("合伙人用户ID");
+
+                entity.Property(e => e.PosSn)
+                    .HasColumnName("pos_sn")
+                    .HasColumnType("varchar(32)")
+                    .HasComment("机具码")
+                    .HasCharSet("utf8mb3")
+                    .HasCollation("utf8mb3_general_ci");
+
+                entity.Property(e => e.PosType)
+                    .HasColumnName("pos_type")
+                    .HasDefaultValueSql("'2'")
+                    .HasComment("机具活动类型 0空白机 1活动机 2正常兑换 101营训");
+
+                entity.Property(e => e.PreUserId)
+                    .HasColumnName("pre_user_id")
+                    .HasComment("预发到用户的ID");
+
+                entity.Property(e => e.RecycleEndTime)
+                    .HasColumnName("recycle_end_time")
+                    .HasColumnType("datetime")
+                    .HasComment("循环结束时间");
+
+                entity.Property(e => e.RecycleStatus)
+                    .HasColumnName("recycle_status")
+                    .HasComment("循环状态 0不可循环 1可循环");
+
+                entity.Property(e => e.ReturnStatus)
+                    .HasColumnName("return_status")
+                    .HasComment("回收状态 待回收=1 待确认=2 已确认=3 已驳回=4 已撤回=-1");
+
+                entity.Property(e => e.ScanQrTrade)
+                    .HasColumnName("scan_qr_trade")
+                    .HasColumnType("decimal(18,2)")
+                    .HasComment("扫码交易额");
+
+                entity.Property(e => e.SecondFee)
+                    .HasColumnName("second_fee")
+                    .HasColumnType("decimal(18,2)")
+                    .HasComment("秒到费");
+
+                entity.Property(e => e.SourcePledge)
+                    .HasColumnName("source_pledge")
+                    .HasColumnType("decimal(18,2)")
+                    .HasComment("厂家押金");
+
+                entity.Property(e => e.SourcePosSn)
+                    .HasColumnName("source_pos_sn")
+                    .HasColumnType("varchar(128)")
+                    .HasComment("溯源机具和兑换券")
+                    .HasCharSet("utf8mb3")
+                    .HasCollation("utf8mb3_general_ci");
+
+                entity.Property(e => e.Status)
+                    .HasColumnName("status")
+                    .HasComment("状态 -1坏机 0在库 1出库 ");
+
+                entity.Property(e => e.UpFeeFlag)
+                    .HasColumnName("up_fee_flag")
+                    .HasComment("费率调降标记 0未调 1已调整");
+
+                entity.Property(e => e.UpdateTime)
+                    .HasColumnName("update_time")
+                    .HasColumnType("datetime")
+                    .HasComment("更新时间");
+
+                entity.Property(e => e.UserId)
+                    .HasColumnName("user_id")
+                    .HasComment("所属创客ID");
+
+                entity.Property(e => e.Version)
+                    .HasColumnName("version")
+                    .HasComment("版本");
+
+                entity.Property(e => e.WarehouseId)
+                    .HasColumnName("warehouse_id")
+                    .HasComment("仓库ID");
+
+                entity.Property(e => e.WarehouseName)
+                    .HasColumnName("warehouse_name")
+                    .HasColumnType("varchar(64)")
+                    .HasComment("仓库名称")
+                    .HasCharSet("utf8mb3")
+                    .HasCollation("utf8mb3_general_ci");
+            });
+
+            modelBuilder.Entity<KxsMachineAward>(entity =>
+            {
+                entity.ToTable("kxs_machine_award");
+
+                entity.HasComment("机具奖励信息表");
+
+                entity.Property(e => e.Id)
+                    .HasColumnName("id")
+                    .HasComment("ID");
+
+                entity.Property(e => e.Amount)
+                    .HasColumnName("amount")
+                    .HasColumnType("decimal(18,2)")
+                    .HasComment("奖励金额");
+
+                entity.Property(e => e.AwardType)
+                    .HasColumnName("award_type")
+                    .HasComment("奖励类型 0机具 1商城");
+
+                entity.Property(e => e.CreateTime)
+                    .HasColumnName("create_time")
+                    .HasColumnType("datetime")
+                    .HasComment("创建时间");
+
+                entity.Property(e => e.DelFlag)
+                    .HasColumnName("del_flag")
+                    .HasComment("删除标记");
+
+                entity.Property(e => e.MachineId)
+                    .HasColumnName("machine_id")
+                    .HasComment("机具id");
+
+                entity.Property(e => e.PosSn)
+                    .HasColumnName("pos_sn")
+                    .HasColumnType("varchar(32)")
+                    .HasComment("机具编号")
+                    .HasCharSet("utf8mb3")
+                    .HasCollation("utf8mb3_general_ci");
+
+                entity.Property(e => e.UpdateTime)
+                    .HasColumnName("update_time")
+                    .HasColumnType("datetime")
+                    .HasComment("更新时间");
+
+                entity.Property(e => e.UserCode)
+                    .HasColumnName("user_code")
+                    .HasColumnType("varchar(32)")
+                    .HasComment("创客编号")
+                    .HasCharSet("utf8mb3")
+                    .HasCollation("utf8mb3_general_ci");
+
+                entity.Property(e => e.UserId)
+                    .HasColumnName("user_id")
+                    .HasComment("创客id");
+
+                entity.Property(e => e.Username)
+                    .HasColumnName("username")
+                    .HasColumnType("varchar(32)")
+                    .HasComment("创客用户名")
+                    .HasCharSet("utf8mb3")
+                    .HasCollation("utf8mb3_general_ci");
+
+                entity.Property(e => e.VariationType)
+                    .HasColumnName("variation_type")
+                    .HasComment("奖励类型");
+
+                entity.Property(e => e.Version)
+                    .HasColumnName("version")
+                    .HasComment("版本号");
+            });
+
+            modelBuilder.Entity<KxsMachineCashOrder>(entity =>
+            {
+                entity.ToTable("kxs_machine_cash_order");
+
+                entity.HasComment("客小爽wifi押金订单关联商品订单表");
+
+                entity.Property(e => e.Id)
+                    .HasColumnName("id")
+                    .HasComment("主键ID");
+
+                entity.Property(e => e.CreateBy)
+                    .HasColumnName("create_by")
+                    .HasColumnType("varchar(50)")
+                    .HasComment("添加人")
+                    .HasCharSet("utf8mb3")
+                    .HasCollation("utf8mb3_general_ci");
+
+                entity.Property(e => e.CreateTime)
+                    .HasColumnName("create_time")
+                    .HasColumnType("datetime")
+                    .HasComment("新增时间");
+
+                entity.Property(e => e.DelFlag)
+                    .HasColumnName("del_flag")
+                    .HasColumnType("varchar(1)")
+                    .HasDefaultValueSql("'0'")
+                    .HasComment("删除标记,0未删除,1已删除")
+                    .HasCharSet("utf8mb3")
+                    .HasCollation("utf8mb3_general_ci");
+
+                entity.Property(e => e.MachineApplyId)
+                    .HasColumnName("machine_apply_id")
+                    .HasComment("机具申请订单ID");
+
+                entity.Property(e => e.MachineId)
+                    .HasColumnName("machine_id")
+                    .HasComment("机具ID");
+
+                entity.Property(e => e.ShopOrderId)
+                    .HasColumnName("shop_order_id")
+                    .HasComment("商品订单ID");
+
+                entity.Property(e => e.UpdateBy)
+                    .HasColumnName("update_by")
+                    .HasColumnType("varchar(50)")
+                    .HasComment("更新人")
+                    .HasCharSet("utf8mb3")
+                    .HasCollation("utf8mb3_general_ci");
+
+                entity.Property(e => e.UpdateTime)
+                    .HasColumnName("update_time")
+                    .HasColumnType("datetime")
+                    .HasComment("更新时间");
+
+                entity.Property(e => e.UserCode)
+                    .HasColumnName("user_code")
+                    .HasColumnType("varchar(16)")
+                    .HasComment("创客编号")
+                    .HasCharSet("utf8mb3")
+                    .HasCollation("utf8mb3_general_ci");
+
+                entity.Property(e => e.UserId)
+                    .HasColumnName("user_id")
+                    .HasComment("用户ID");
+
+                entity.Property(e => e.Username)
+                    .HasColumnName("username")
+                    .HasColumnType("varchar(64)")
+                    .HasComment("创客姓名")
+                    .HasCharSet("utf8mb3")
+                    .HasCollation("utf8mb3_general_ci");
+
+                entity.Property(e => e.Version)
+                    .HasColumnName("version")
+                    .HasComment("版本");
+            });
+
+            modelBuilder.Entity<KxsMachineCirculationLog>(entity =>
+            {
+                entity.ToTable("kxs_machine_circulation_log");
+
+                entity.HasComment("客小爽循环机记录表");
+
+                entity.Property(e => e.Id)
+                    .HasColumnName("id")
+                    .HasComment("主键ID");
+
+                entity.Property(e => e.CreateTime)
+                    .HasColumnName("create_time")
+                    .HasColumnType("datetime")
+                    .HasComment("新增时间");
+
+                entity.Property(e => e.DelFlag)
+                    .HasColumnName("del_flag")
+                    .HasComment("删除标记,0未删除,1已删除");
+
+                entity.Property(e => e.MachineId)
+                    .HasColumnName("machine_id")
+                    .HasComment("机具ID");
+
+                entity.Property(e => e.OrderId)
+                    .HasColumnName("order_id")
+                    .HasComment("订单ID");
+
+                entity.Property(e => e.Pid)
+                    .HasColumnName("pid")
+                    .HasComment("上级ID");
+
+                entity.Property(e => e.PidPath)
+                    .HasColumnName("pid_path")
+                    .HasColumnType("varchar(2000)")
+                    .HasDefaultValueSql("'0'")
+                    .HasComment("上级路径")
+                    .HasCharSet("utf8mb3")
+                    .HasCollation("utf8mb3_general_ci");
+
+                entity.Property(e => e.SourceSn)
+                    .HasColumnName("source_sn")
+                    .HasColumnType("varchar(32)")
+                    .HasComment("源sn")
+                    .HasCharSet("utf8mb3")
+                    .HasCollation("utf8mb3_general_ci");
+
+                entity.Property(e => e.UpdateTime)
+                    .HasColumnName("update_time")
+                    .HasColumnType("datetime")
+                    .HasComment("更新时间");
+
+                entity.Property(e => e.UserId)
+                    .HasColumnName("user_id")
+                    .HasComment("用户ID");
+
+                entity.Property(e => e.Version)
+                    .HasColumnName("version")
+                    .HasComment("版本");
+            });
+
+            modelBuilder.Entity<KxsMachineCutBind>(entity =>
+            {
+                entity.ToTable("kxs_machine_cut_bind");
+
+                entity.HasComment("机具换绑记录表");
+
+                entity.Property(e => e.Id)
+                    .HasColumnName("id")
+                    .HasComment("主键ID");
+
+                entity.Property(e => e.BrandId)
+                    .HasColumnName("brand_id")
+                    .HasComment("品牌");
+
+                entity.Property(e => e.CreateBy)
+                    .HasColumnName("create_by")
+                    .HasColumnType("varchar(64)")
+                    .HasComment("操作人")
+                    .HasCharSet("utf8mb3")
+                    .HasCollation("utf8mb3_general_ci");
+
+                entity.Property(e => e.CreateTime)
+                    .HasColumnName("create_time")
+                    .HasColumnType("datetime")
+                    .HasComment("新增时间");
+
+                entity.Property(e => e.CutBrandId)
+                    .HasColumnName("cut_brand_id")
+                    .HasComment("换机后的新品牌");
+
+                entity.Property(e => e.CutPosSn)
+                    .HasColumnName("cut_pos_sn")
+                    .HasColumnType("varchar(64)")
+                    .HasComment("换机后的新sn")
+                    .HasCharSet("utf8mb3")
+                    .HasCollation("utf8mb3_general_ci");
+
+                entity.Property(e => e.CutType)
+                    .HasColumnName("cut_type")
+                    .HasComment("类型 0-换绑 1-坏机换新 2-跨品牌换机");
+
+                entity.Property(e => e.DelFlag)
+                    .HasColumnName("del_flag")
+                    .HasColumnType("varchar(1)")
+                    .HasDefaultValueSql("'0'")
+                    .HasComment("删除标记,0未删除,1已删除")
+                    .HasCharSet("utf8mb3")
+                    .HasCollation("utf8mb3_general_ci");
+
+                entity.Property(e => e.IsNotify)
+                    .HasColumnName("is_notify")
+                    .HasComment("是否通知创客 1通知");
+
+                entity.Property(e => e.OrderSn)
+                    .HasColumnName("order_sn")
+                    .HasColumnType("varchar(64)")
+                    .HasComment("订单号")
+                    .HasCharSet("utf8mb3")
+                    .HasCollation("utf8mb3_general_ci");
+
+                entity.Property(e => e.OutWhsAddress)
+                    .HasColumnName("out_whs_address")
+                    .HasColumnType("varchar(255)")
+                    .HasComment("出库仓库地址")
+                    .HasCharSet("utf8mb3")
+                    .HasCollation("utf8mb3_general_ci");
+
+                entity.Property(e => e.OutWhsId)
+                    .HasColumnName("out_whs_id")
+                    .HasComment("出库仓库ID");
+
+                entity.Property(e => e.OutWhsMobile)
+                    .HasColumnName("out_whs_mobile")
+                    .HasColumnType("varchar(16)")
+                    .HasComment("出库仓库手机号码")
+                    .HasCharSet("utf8mb3")
+                    .HasCollation("utf8mb3_general_ci");
+
+                entity.Property(e => e.OutWhsName)
+                    .HasColumnName("out_whs_name")
+                    .HasColumnType("varchar(128)")
+                    .HasComment("出库仓库名称")
+                    .HasCharSet("utf8mb3")
+                    .HasCollation("utf8mb3_general_ci");
+
+                entity.Property(e => e.PosSn)
+                    .HasColumnName("pos_sn")
+                    .HasColumnType("varchar(64)")
+                    .HasComment("机具号")
+                    .HasCharSet("utf8mb3")
+                    .HasCollation("utf8mb3_general_ci");
+
+                entity.Property(e => e.Remark)
+                    .HasColumnName("remark")
+                    .HasColumnType("varchar(128)")
+                    .HasComment("备注")
+                    .HasCharSet("utf8mb3")
+                    .HasCollation("utf8mb3_general_ci");
+
+                entity.Property(e => e.ToWhsAddress)
+                    .HasColumnName("to_whs_address")
+                    .HasColumnType("varchar(255)")
+                    .HasComment("退回仓库地址")
+                    .HasCharSet("utf8mb3")
+                    .HasCollation("utf8mb3_general_ci");
+
+                entity.Property(e => e.ToWhsId)
+                    .HasColumnName("to_whs_id")
+                    .HasComment("退回仓库ID");
+
+                entity.Property(e => e.ToWhsMobile)
+                    .HasColumnName("to_whs_mobile")
+                    .HasColumnType("varchar(16)")
+                    .HasComment("退回仓库联系号码")
+                    .HasCharSet("utf8mb3")
+                    .HasCollation("utf8mb3_general_ci");
+
+                entity.Property(e => e.ToWhsName)
+                    .HasColumnName("to_whs_name")
+                    .HasColumnType("varchar(128)")
+                    .HasComment("退回仓库名称")
+                    .HasCharSet("utf8mb3")
+                    .HasCollation("utf8mb3_general_ci");
+
+                entity.Property(e => e.UpdateBy)
+                    .HasColumnName("update_by")
+                    .HasColumnType("varchar(32)")
+                    .HasComment("操作人")
+                    .HasCharSet("utf8mb3")
+                    .HasCollation("utf8mb3_general_ci");
+
+                entity.Property(e => e.UpdateTime)
+                    .HasColumnName("update_time")
+                    .HasColumnType("datetime")
+                    .HasComment("更新时间");
+
+                entity.Property(e => e.UserCode)
+                    .HasColumnName("user_code")
+                    .HasColumnType("varchar(16)")
+                    .HasComment("用户编号")
+                    .HasCharSet("utf8mb3")
+                    .HasCollation("utf8mb3_general_ci");
+
+                entity.Property(e => e.UserId)
+                    .HasColumnName("user_id")
+                    .HasComment("用户ID");
+
+                entity.Property(e => e.Username)
+                    .HasColumnName("username")
+                    .HasColumnType("varchar(32)")
+                    .HasComment("用户姓名")
+                    .HasCharSet("utf8mb3")
+                    .HasCollation("utf8mb3_general_ci");
+
+                entity.Property(e => e.Version)
+                    .HasColumnName("version")
+                    .HasComment("版本");
+            });
+
+            modelBuilder.Entity<KxsMachineDeduct>(entity =>
+            {
+                entity.ToTable("kxs_machine_deduct");
+
+                entity.HasComment("机具循环过期已扣款记录表");
+
+                entity.Property(e => e.Id)
+                    .HasColumnName("id")
+                    .HasComment("主键ID");
+
+                entity.Property(e => e.BrandId)
+                    .HasColumnName("brand_id")
+                    .HasComment("品牌名称");
+
+                entity.Property(e => e.CreateTime)
+                    .HasColumnName("create_time")
+                    .HasColumnType("datetime")
+                    .HasComment("新增时间");
+
+                entity.Property(e => e.DelFlag)
+                    .HasColumnName("del_flag")
+                    .HasComment("删除标记,0未删除,1已删除");
+
+                entity.Property(e => e.PosSn)
+                    .HasColumnName("pos_sn")
+                    .HasColumnType("varchar(64)")
+                    .HasComment("机具号")
+                    .HasCharSet("utf8mb3")
+                    .HasCollation("utf8mb3_general_ci");
+
+                entity.Property(e => e.Remark)
+                    .HasColumnName("remark")
+                    .HasColumnType("varchar(255)")
+                    .HasComment("备注")
+                    .HasCharSet("utf8mb3")
+                    .HasCollation("utf8mb3_general_ci");
+
+                entity.Property(e => e.UpdateTime)
+                    .HasColumnName("update_time")
+                    .HasColumnType("datetime")
+                    .HasComment("更新时间");
+
+                entity.Property(e => e.Version)
+                    .HasColumnName("version")
+                    .HasComment("版本");
+            });
+
+            modelBuilder.Entity<KxsMachineExpInfo>(entity =>
+            {
+                entity.ToTable("kxs_machine_exp_info");
+
+                entity.HasComment("机具未绑定超时预扣款记录表");
+
+                entity.Property(e => e.Id)
+                    .HasColumnName("id")
+                    .HasComment("主键ID");
+
+                entity.Property(e => e.AdvanceId)
+                    .HasColumnName("advance_id")
+                    .HasComment("预扣款ID");
+
+                entity.Property(e => e.CreateBy)
+                    .HasColumnName("create_by")
+                    .HasColumnType("varchar(50)")
+                    .HasComment("添加人")
+                    .HasCharSet("utf8mb3")
+                    .HasCollation("utf8mb3_general_ci");
+
+                entity.Property(e => e.CreateTime)
+                    .HasColumnName("create_time")
+                    .HasColumnType("datetime")
+                    .HasComment("新增时间");
+
+                entity.Property(e => e.DelFlag)
+                    .HasColumnName("del_flag")
+                    .HasColumnType("varchar(1)")
+                    .HasDefaultValueSql("'0'")
+                    .HasComment("删除标记,0未删除,1已删除")
+                    .HasCharSet("utf8mb3")
+                    .HasCollation("utf8mb3_general_ci");
+
+                entity.Property(e => e.MachineId)
+                    .HasColumnName("machine_id")
+                    .HasComment("机具ID");
+
+                entity.Property(e => e.UpdateBy)
+                    .HasColumnName("update_by")
+                    .HasColumnType("varchar(50)")
+                    .HasComment("更新人")
+                    .HasCharSet("utf8mb3")
+                    .HasCollation("utf8mb3_general_ci");
+
+                entity.Property(e => e.UpdateTime)
+                    .HasColumnName("update_time")
+                    .HasColumnType("datetime")
+                    .HasComment("更新时间");
+
+                entity.Property(e => e.UserId)
+                    .HasColumnName("user_id")
+                    .HasComment("用户ID");
+
+                entity.Property(e => e.Version)
+                    .HasColumnName("version")
+                    .HasComment("版本");
+            });
+
+            modelBuilder.Entity<KxsMachinePledge>(entity =>
+            {
+                entity.ToTable("kxs_machine_pledge");
+
+                entity.HasComment("客小爽押金调整记录表");
+
+                entity.Property(e => e.Id)
+                    .HasColumnName("id")
+                    .HasComment("主键ID");
+
+                entity.Property(e => e.AfterPledge)
+                    .HasColumnName("after_pledge")
+                    .HasColumnType("decimal(18,2)")
+                    .HasComment("调整后押金");
+
+                entity.Property(e => e.BeforePledge)
+                    .HasColumnName("before_pledge")
+                    .HasColumnType("decimal(18,2)")
+                    .HasComment("调整前押金");
+
+                entity.Property(e => e.BrandId)
+                    .HasColumnName("brand_id")
+                    .HasComment("品牌");
+
+                entity.Property(e => e.CreateBy)
+                    .HasColumnName("create_by")
+                    .HasColumnType("varchar(32)")
+                    .HasComment("操作人")
+                    .HasCharSet("utf8mb3")
+                    .HasCollation("utf8mb3_general_ci");
+
+                entity.Property(e => e.CreateTime)
+                    .HasColumnName("create_time")
+                    .HasColumnType("datetime")
+                    .HasComment("新增时间");
+
+                entity.Property(e => e.DelFlag)
+                    .HasColumnName("del_flag")
+                    .HasComment("删除标记,0未删除,1已删除");
+
+                entity.Property(e => e.PosSn)
+                    .IsRequired()
+                    .HasColumnName("pos_sn")
+                    .HasColumnType("varchar(64)")
+                    .HasDefaultValueSql("'0'")
+                    .HasComment("机具")
+                    .HasCharSet("utf8mb3")
+                    .HasCollation("utf8mb3_general_ci");
+
+                entity.Property(e => e.Remark)
+                    .HasColumnName("remark")
+                    .HasColumnType("varchar(255)")
+                    .HasComment("备注")
+                    .HasCharSet("utf8mb3")
+                    .HasCollation("utf8mb3_general_ci");
+
+                entity.Property(e => e.Result)
+                    .HasColumnName("result")
+                    .HasColumnType("varchar(1000)")
+                    .HasComment("三方返回数据")
+                    .HasCharSet("utf8mb3")
+                    .HasCollation("utf8mb3_general_ci");
+
+                entity.Property(e => e.UpdateTime)
+                    .HasColumnName("update_time")
+                    .HasColumnType("datetime")
+                    .HasComment("更新时间");
+
+                entity.Property(e => e.UserId)
+                    .HasColumnName("user_id")
+                    .HasComment("用户ID");
+
+                entity.Property(e => e.Version)
+                    .HasColumnName("version")
+                    .HasComment("版本");
+            });
+
+            modelBuilder.Entity<KxsMachineRatio>(entity =>
+            {
+                entity.ToTable("kxs_machine_ratio");
+
+                entity.HasComment("客小爽费率调整记录表");
+
+                entity.HasIndex(e => new { e.MachineId, e.MerchantId })
+                    .HasName("query");
+
+                entity.Property(e => e.Id)
+                    .HasColumnName("id")
+                    .HasComment("主键ID");
+
+                entity.Property(e => e.BeforeRatio)
+                    .HasColumnName("before_ratio")
+                    .HasColumnType("decimal(18,2)")
+                    .HasComment("调前费率");
+
+                entity.Property(e => e.BrandId)
+                    .HasColumnName("brand_id")
+                    .HasComment("品牌");
+
+                entity.Property(e => e.CreateBy)
+                    .HasColumnName("create_by")
+                    .HasColumnType("varchar(32)")
+                    .HasComment("操作人")
+                    .HasCharSet("utf8mb3")
+                    .HasCollation("utf8mb3_general_ci");
+
+                entity.Property(e => e.CreateTime)
+                    .HasColumnName("create_time")
+                    .HasColumnType("datetime")
+                    .HasComment("新增时间");
+
+                entity.Property(e => e.DelFlag)
+                    .HasColumnName("del_flag")
+                    .HasComment("删除标记,0未删除,1已删除");
+
+                entity.Property(e => e.MachineId)
+                    .HasColumnName("machine_id")
+                    .HasComment("机具ID");
+
+                entity.Property(e => e.MerchantId)
+                    .HasColumnName("merchant_id")
+                    .HasComment("商户ID");
+
+                entity.Property(e => e.PosSn)
+                    .HasColumnName("pos_sn")
+                    .HasColumnType("varchar(64)")
+                    .HasComment("机具ID")
+                    .HasCharSet("utf8mb3")
+                    .HasCollation("utf8mb3_general_ci");
+
+                entity.Property(e => e.PosUserId)
+                    .HasColumnName("pos_user_id")
+                    .HasComment("机具所属人用户ID");
+
+                entity.Property(e => e.Ratio)
+                    .HasColumnName("ratio")
+                    .HasColumnType("decimal(18,2)")
+                    .HasComment("调整费率");
+
+                entity.Property(e => e.Remark)
+                    .HasColumnName("remark")
+                    .HasColumnType("varchar(255)")
+                    .HasComment("备注")
+                    .HasCharSet("utf8mb3")
+                    .HasCollation("utf8mb3_general_ci");
+
+                entity.Property(e => e.Result)
+                    .HasColumnName("result")
+                    .HasColumnType("varchar(2000)")
+                    .HasComment("三方返回数据")
+                    .HasCharSet("utf8mb3")
+                    .HasCollation("utf8mb3_general_ci");
+
+                entity.Property(e => e.Status)
+                    .HasColumnName("status")
+                    .HasDefaultValueSql("'1'")
+                    .HasComment("状态 -1 调整失败 0审核中 1设置成功");
+
+                entity.Property(e => e.UpdateTime)
+                    .HasColumnName("update_time")
+                    .HasColumnType("datetime")
+                    .HasComment("更新时间");
+
+                entity.Property(e => e.UserId)
+                    .HasColumnName("user_id")
+                    .HasComment("用户ID");
+
+                entity.Property(e => e.Version)
+                    .HasColumnName("version")
+                    .HasComment("版本");
+            });
+
+            modelBuilder.Entity<KxsMachineTrack>(entity =>
+            {
+                entity.ToTable("kxs_machine_track");
+
+                entity.HasComment("客小爽机具轨迹记录表");
+
+                entity.HasIndex(e => e.PosSn)
+                    .HasName("pos_sn");
+
+                entity.Property(e => e.Id)
+                    .HasColumnName("id")
+                    .HasComment("主键ID");
+
+                entity.Property(e => e.AfterUserId)
+                    .HasColumnName("after_user_id")
+                    .HasComment("变动后用户ID");
+
+                entity.Property(e => e.AfterWhsId)
+                    .HasColumnName("after_whs_id")
+                    .HasComment("操作后仓库");
+
+                entity.Property(e => e.BeforeUserId)
+                    .HasColumnName("before_user_id")
+                    .HasComment("变动前所属用户ID");
+
+                entity.Property(e => e.BeforeWhsId)
+                    .HasColumnName("before_whs_id")
+                    .HasComment("操作前仓库");
+
+                entity.Property(e => e.BrandId)
+                    .HasColumnName("brand_id")
+                    .HasComment("品牌ID");
+
+                entity.Property(e => e.ChangeType)
+                    .HasColumnName("change_type")
+                    .HasComment("变动方向 0出库 1入库");
+
+                entity.Property(e => e.CreateTime)
+                    .HasColumnName("create_time")
+                    .HasColumnType("datetime")
+                    .HasComment("新增时间");
+
+                entity.Property(e => e.DelFlag)
+                    .HasColumnName("del_flag")
+                    .HasComment("删除标记,0未删除,1已删除");
+
+                entity.Property(e => e.MachineId)
+                    .HasColumnName("machine_id")
+                    .HasComment("机具ID");
+
+                entity.Property(e => e.PartnerId)
+                    .HasColumnName("partner_id")
+                    .HasComment("合伙人ID");
+
+                entity.Property(e => e.PosSn)
+                    .HasColumnName("pos_sn")
+                    .HasColumnType("varchar(64)")
+                    .HasComment("机具号")
+                    .HasCharSet("utf8mb3")
+                    .HasCollation("utf8mb3_general_ci");
+
+                entity.Property(e => e.Remark)
+                    .HasColumnName("remark")
+                    .HasColumnType("varchar(255)")
+                    .HasComment("备注")
+                    .HasCharSet("utf8mb3")
+                    .HasCollation("utf8mb3_general_ci");
+
+                entity.Property(e => e.TrackType)
+                    .HasColumnName("track_type")
+                    .HasComment("轨迹类型 0 采购 1 调拨 2 出货 3 退货 4 驳回 5 回仓退款 6 换机出库 7 换机入库");
+
+                entity.Property(e => e.UpdateTime)
+                    .HasColumnName("update_time")
+                    .HasColumnType("datetime")
+                    .HasComment("更新时间");
+
+                entity.Property(e => e.Version)
+                    .HasColumnName("version")
+                    .HasComment("版本");
+            });
+
+            modelBuilder.Entity<KxsMachineTransfer>(entity =>
+            {
+                entity.ToTable("kxs_machine_transfer");
+
+                entity.HasComment("客小爽机具划拨记录表");
+
+                entity.Property(e => e.Id)
+                    .HasColumnName("id")
+                    .HasComment("主键ID");
+
+                entity.Property(e => e.BrandId)
+                    .HasColumnName("brand_id")
+                    .HasComment("品牌ID");
+
+                entity.Property(e => e.CreateTime)
+                    .HasColumnName("create_time")
+                    .HasColumnType("datetime")
+                    .HasComment("新增时间");
+
+                entity.Property(e => e.DelFlag)
+                    .HasColumnName("del_flag")
+                    .HasComment("删除标记,0未删除,1已删除");
+
+                entity.Property(e => e.MachineId)
+                    .HasColumnName("machine_id")
+                    .HasComment("机具ID");
+
+                entity.Property(e => e.MachineSn)
+                    .HasColumnName("machine_sn")
+                    .HasColumnType("varchar(32)")
+                    .HasComment("机具号")
+                    .HasCharSet("utf8mb3")
+                    .HasCollation("utf8mb3_general_ci");
+
+                entity.Property(e => e.MachineType)
+                    .HasColumnName("machine_type")
+                    .HasComment("机具类型 0兑换机 1循环机");
+
+                entity.Property(e => e.Remark)
+                    .HasColumnName("remark")
+                    .HasColumnType("varchar(255)")
+                    .HasComment("备注")
+                    .HasCharSet("utf8mb3")
+                    .HasCollation("utf8mb3_general_ci");
+
+                entity.Property(e => e.SendUserId)
+                    .HasColumnName("send_user_id")
+                    .HasComment("拨出用户ID");
+
+                entity.Property(e => e.ToUserCode)
+                    .HasColumnName("to_user_code")
+                    .HasColumnType("varchar(12)")
+                    .HasComment("拨入用户code")
+                    .HasCharSet("utf8mb3")
+                    .HasCollation("utf8mb3_general_ci");
+
+                entity.Property(e => e.ToUserId)
+                    .HasColumnName("to_user_id")
+                    .HasComment("拨入用户ID");
+
+                entity.Property(e => e.ToUserName)
+                    .HasColumnName("to_user_name")
+                    .HasColumnType("varchar(32)")
+                    .HasComment("拨入用户姓名")
+                    .HasCharSet("utf8mb3")
+                    .HasCollation("utf8mb3_general_ci");
+
+                entity.Property(e => e.TransferType)
+                    .HasColumnName("transfer_type")
+                    .HasComment("划拨类型 0未绑定划拨");
+
+                entity.Property(e => e.UpdateTime)
+                    .HasColumnName("update_time")
+                    .HasColumnType("datetime")
+                    .HasComment("更新时间");
+
+                entity.Property(e => e.Version)
+                    .HasColumnName("version")
+                    .HasComment("版本");
+            });
+
+            modelBuilder.Entity<KxsMachineUnbind>(entity =>
+            {
+                entity.ToTable("kxs_machine_unbind");
+
+                entity.HasComment("机具解绑记录表");
+
+                entity.Property(e => e.Id)
+                    .HasColumnName("id")
+                    .HasComment("主键ID");
+
+                entity.Property(e => e.ApplyNo)
+                    .HasColumnName("apply_no")
+                    .HasColumnType("varchar(64)")
+                    .HasComment("订单号")
+                    .HasCharSet("utf8mb3")
+                    .HasCollation("utf8mb3_general_ci");
+
+                entity.Property(e => e.BrandId)
+                    .HasColumnName("brand_id")
+                    .HasComment("品牌");
+
+                entity.Property(e => e.CreateBy)
+                    .HasColumnName("create_by")
+                    .HasColumnType("varchar(64)")
+                    .HasComment("操作人")
+                    .HasCharSet("utf8mb3")
+                    .HasCollation("utf8mb3_general_ci");
+
+                entity.Property(e => e.CreateTime)
+                    .HasColumnName("create_time")
+                    .HasColumnType("datetime")
+                    .HasComment("新增时间");
+
+                entity.Property(e => e.DelFlag)
+                    .HasColumnName("del_flag")
+                    .HasColumnType("varchar(1)")
+                    .HasDefaultValueSql("'0'")
+                    .HasComment("删除标记,0未删除,1已删除")
+                    .HasCharSet("utf8mb3")
+                    .HasCollation("utf8mb3_general_ci");
+
+                entity.Property(e => e.MchId)
+                    .HasColumnName("mch_id")
+                    .HasComment("商户ID");
+
+                entity.Property(e => e.PosSn)
+                    .HasColumnName("pos_sn")
+                    .HasColumnType("varchar(64)")
+                    .HasComment("机具号")
+                    .HasCharSet("utf8mb3")
+                    .HasCollation("utf8mb3_general_ci");
+
+                entity.Property(e => e.Remark)
+                    .HasColumnName("remark")
+                    .HasColumnType("varchar(255)")
+                    .HasComment("备注")
+                    .HasCharSet("utf8mb3")
+                    .HasCollation("utf8mb3_general_ci");
+
+                entity.Property(e => e.UpdateTime)
+                    .HasColumnName("update_time")
+                    .HasColumnType("datetime")
+                    .HasComment("更新时间");
+
+                entity.Property(e => e.UserId)
+                    .HasColumnName("user_id")
+                    .HasComment("用户ID");
+
+                entity.Property(e => e.Version)
+                    .HasColumnName("version")
+                    .HasComment("版本");
+            });
+
+            modelBuilder.Entity<KxsMerchant>(entity =>
+            {
+                entity.ToTable("kxs_merchant");
+
+                entity.HasComment("客小爽商户表");
+
+                entity.HasIndex(e => e.BrandId)
+                    .HasName("query");
+
+                entity.HasIndex(e => e.MachineId)
+                    .HasName("machineId");
+
+                entity.HasIndex(e => e.MerchantName)
+                    .HasName("mch_name");
+
+                entity.HasIndex(e => e.MerchantNo)
+                    .HasName("mch_no");
+
+                entity.HasIndex(e => e.UserId)
+                    .HasName("userId");
+
+                entity.Property(e => e.Id)
+                    .HasColumnName("id")
+                    .HasComment("主键ID");
+
+                entity.Property(e => e.Address)
+                    .HasColumnName("address")
+                    .HasColumnType("varchar(128)")
+                    .HasComment("商户地址")
+                    .HasCharSet("utf8mb3")
+                    .HasCollation("utf8mb3_general_ci");
+
+                entity.Property(e => e.BrandId)
+                    .HasColumnName("brand_id")
+                    .HasComment("品牌ID");
+
+                entity.Property(e => e.CreateTime)
+                    .HasColumnName("create_time")
+                    .HasColumnType("datetime")
+                    .HasComment("新增时间");
+
+                entity.Property(e => e.DelFlag)
+                    .HasColumnName("del_flag")
+                    .HasComment("删除标记,0未删除,1已删除");
+
+                entity.Property(e => e.IsMaker)
+                    .HasColumnName("is_maker")
+                    .HasComment("是否商户型创客 0否 1是");
+
+                entity.Property(e => e.MachineId)
+                    .HasColumnName("machine_id")
+                    .HasComment("机具ID");
+
+                entity.Property(e => e.MakerUserId)
+                    .HasColumnName("maker_user_id")
+                    .HasComment("商户型创客的用户ID");
+
+                entity.Property(e => e.MerchantCard)
+                    .HasColumnName("merchant_card")
+                    .HasColumnType("varchar(50)")
+                    .HasComment("身份证号")
+                    .HasCharSet("utf8mb3")
+                    .HasCollation("utf8mb3_general_ci");
+
+                entity.Property(e => e.MerchantName)
+                    .HasColumnName("merchant_name")
+                    .HasColumnType("varchar(64)")
+                    .HasComment("商户名称")
+                    .HasCharSet("utf8mb3")
+                    .HasCollation("utf8mb3_general_ci");
+
+                entity.Property(e => e.MerchantNo)
+                    .HasColumnName("merchant_no")
+                    .HasColumnType("varchar(32)")
+                    .HasComment("商户编号")
+                    .HasCharSet("utf8mb3")
+                    .HasCollation("utf8mb3_general_ci");
+
+                entity.Property(e => e.MerchantPhone)
+                    .HasColumnName("merchant_phone")
+                    .HasColumnType("varchar(18)")
+                    .HasComment("商户电话")
+                    .HasCharSet("utf8mb3")
+                    .HasCollation("utf8mb3_general_ci");
+
+                entity.Property(e => e.Remark)
+                    .HasColumnName("remark")
+                    .HasColumnType("varchar(255)")
+                    .HasComment("备注")
+                    .HasCharSet("utf8mb3")
+                    .HasCollation("utf8mb3_general_ci");
+
+                entity.Property(e => e.StandardMonths)
+                    .HasColumnName("standard_months")
+                    .HasComment("退押达标月数");
+
+                entity.Property(e => e.StandardStatus)
+                    .HasColumnName("standard_status")
+                    .HasComment("退押达标状态 待处理=0 退还成功=1 退还失败=2 处理中=3 已达标=100 可退还=101");
+
+                entity.Property(e => e.StandardTime)
+                    .HasColumnName("standard_time")
+                    .HasColumnType("datetime")
+                    .HasComment("达标时间");
+
+                entity.Property(e => e.Status)
+                    .HasColumnName("status")
+                    .HasDefaultValueSql("'1'")
+                    .HasComment("商户状态 0关闭 1正常 2冻结");
+
+                entity.Property(e => e.TotalAmt)
+                    .HasColumnName("total_amt")
+                    .HasColumnType("decimal(18,2)")
+                    .HasComment("总交易额");
+
+                entity.Property(e => e.UpdateTime)
+                    .HasColumnName("update_time")
+                    .HasColumnType("datetime")
+                    .HasComment("更新时间");
+
+                entity.Property(e => e.UserId)
+                    .HasColumnName("user_id")
+                    .HasComment("所属创客ID");
+
+                entity.Property(e => e.Version)
+                    .HasColumnName("version")
+                    .HasComment("版本");
+            });
+
+            modelBuilder.Entity<KxsMerchantReturn>(entity =>
+            {
+                entity.ToTable("kxs_merchant_return");
+
+                entity.HasComment("商户退押账户信息表");
+
+                entity.Property(e => e.Id)
+                    .HasColumnName("id")
+                    .HasComment("主键ID");
+
+                entity.Property(e => e.AliAccount)
+                    .HasColumnName("ali_account")
+                    .HasColumnType("varchar(32)")
+                    .HasComment("支付宝账户")
+                    .HasCharSet("utf8mb3")
+                    .HasCollation("utf8mb3_general_ci");
+
+                entity.Property(e => e.BankName)
+                    .HasColumnName("bank_name")
+                    .HasColumnType("varchar(128)")
+                    .HasComment("银行卡名称")
+                    .HasCharSet("utf8mb3")
+                    .HasCollation("utf8mb3_general_ci");
+
+                entity.Property(e => e.BankNo)
+                    .HasColumnName("bank_no")
+                    .HasColumnType("varchar(64)")
+                    .HasComment("银行卡号")
+                    .HasCharSet("utf8mb3")
+                    .HasCollation("utf8mb3_general_ci");
+
+                entity.Property(e => e.CreateBy)
+                    .HasColumnName("create_by")
+                    .HasColumnType("varchar(64)")
+                    .HasComment("操作人")
+                    .HasCharSet("utf8mb3")
+                    .HasCollation("utf8mb3_general_ci");
+
+                entity.Property(e => e.CreateTime)
+                    .HasColumnName("create_time")
+                    .HasColumnType("datetime")
+                    .HasComment("新增时间");
+
+                entity.Property(e => e.DelFlag)
+                    .HasColumnName("del_flag")
+                    .HasColumnType("varchar(1)")
+                    .HasDefaultValueSql("'0'")
+                    .HasComment("删除标记,0未删除,1已删除")
+                    .HasCharSet("utf8mb3")
+                    .HasCollation("utf8mb3_general_ci");
+
+                entity.Property(e => e.MchId)
+                    .HasColumnName("mch_id")
+                    .HasComment("商户ID");
+
+                entity.Property(e => e.OrderSn)
+                    .HasColumnName("order_sn")
+                    .HasColumnType("varchar(64)")
+                    .HasComment("订单号")
+                    .HasCharSet("utf8mb3")
+                    .HasCollation("utf8mb3_general_ci");
+
+                entity.Property(e => e.PayKind)
+                    .HasColumnName("pay_kind")
+                    .HasComment("支付类型 0支付宝 1银行卡");
+
+                entity.Property(e => e.Remark)
+                    .HasColumnName("remark")
+                    .HasColumnType("varchar(2000)")
+                    .HasComment("备注")
+                    .HasCharSet("utf8mb3")
+                    .HasCollation("utf8mb3_general_ci");
+
+                entity.Property(e => e.ReturnAmt)
+                    .HasColumnName("return_amt")
+                    .HasColumnType("decimal(18,2)")
+                    .HasComment("退款金额");
+
+                entity.Property(e => e.Status)
+                    .HasColumnName("status")
+                    .HasComment("退款状态 0未退 1成功 2失败");
+
+                entity.Property(e => e.UpdateBy)
+                    .HasColumnName("update_by")
+                    .HasColumnType("varchar(64)")
+                    .HasComment("操作人")
+                    .HasCharSet("utf8mb3")
+                    .HasCollation("utf8mb3_general_ci");
+
+                entity.Property(e => e.UpdateTime)
+                    .HasColumnName("update_time")
+                    .HasColumnType("datetime")
+                    .HasComment("更新时间");
+
+                entity.Property(e => e.UserId)
+                    .HasColumnName("user_id")
+                    .HasComment("机具所属创客ID");
+
+                entity.Property(e => e.Version)
+                    .HasColumnName("version")
+                    .HasComment("版本");
+            });
+
+            modelBuilder.Entity<KxsMerchantTrade>(entity =>
+            {
+                entity.ToTable("kxs_merchant_trade");
+
+                entity.HasComment("商户交易明细");
+
+                entity.Property(e => e.Id)
+                    .HasColumnName("id")
+                    .HasComment("主键ID");
+
+                entity.Property(e => e.BrandId)
+                    .HasColumnName("brand_id")
+                    .HasComment("品牌ID");
+
+                entity.Property(e => e.CardType)
+                    .HasColumnName("card_type")
+                    .HasComment("卡类型 0-贷记卡 1-借记卡");
+
+                entity.Property(e => e.CloudPayFlag)
+                    .HasColumnName("cloud_pay_flag")
+                    .HasComment("是否云闪付 0否 1是");
+
+                entity.Property(e => e.CreateTime)
+                    .HasColumnName("create_time")
+                    .HasColumnType("datetime")
+                    .HasComment("新增时间");
+
+                entity.Property(e => e.DebitTopFlag)
+                    .HasColumnName("debit_top_flag")
+                    .HasComment("借记卡封顶交易标志 0未封顶 1封顶");
+
+                entity.Property(e => e.DelFlag)
+                    .HasColumnName("del_flag")
+                    .HasColumnType("varchar(1)")
+                    .HasDefaultValueSql("'0'")
+                    .HasComment("删除标记,0未删除,1已删除")
+                    .HasCharSet("utf8mb3")
+                    .HasCollation("utf8mb3_general_ci");
+
+                entity.Property(e => e.LvKey)
+                    .HasColumnName("lv_key")
+                    .HasColumnType("varchar(16)")
+                    .HasComment("商户活动类型 字典见对应的值")
+                    .HasCharSet("utf8mb3")
+                    .HasCollation("utf8mb3_general_ci");
+
+                entity.Property(e => e.MchId)
+                    .HasColumnName("mch_id")
+                    .HasComment("商户ID");
+
+                entity.Property(e => e.PosSn)
+                    .HasColumnName("pos_sn")
+                    .HasColumnType("varchar(64)")
+                    .HasComment("机具号")
+                    .HasCharSet("utf8mb3")
+                    .HasCollation("utf8mb3_general_ci");
+
+                entity.Property(e => e.TradeAmt)
+                    .HasColumnName("trade_amt")
+                    .HasColumnType("decimal(18,2)")
+                    .HasComment("交易金额");
+
+                entity.Property(e => e.TradeNo)
+                    .HasColumnName("trade_no")
+                    .HasColumnType("varchar(64)")
+                    .HasComment("交易流水号")
+                    .HasCharSet("utf8mb3")
+                    .HasCollation("utf8mb3_general_ci");
+
+                entity.Property(e => e.UpdateTime)
+                    .HasColumnName("update_time")
+                    .HasColumnType("datetime")
+                    .HasComment("更新时间");
+
+                entity.Property(e => e.UserCode)
+                    .HasColumnName("user_code")
+                    .HasColumnType("varchar(16)")
+                    .HasComment("用户编号")
+                    .HasCharSet("utf8mb3")
+                    .HasCollation("utf8mb3_general_ci");
+
+                entity.Property(e => e.Username)
+                    .HasColumnName("username")
+                    .HasColumnType("varchar(32)")
+                    .HasComment("用户姓名")
+                    .HasCharSet("utf8mb3")
+                    .HasCollation("utf8mb3_general_ci");
+
+                entity.Property(e => e.Version)
+                    .HasColumnName("version")
+                    .HasComment("版本");
+            });
+
+            modelBuilder.Entity<KxsMerchantUser>(entity =>
+            {
+                entity.ToTable("kxs_merchant_user");
+
+                entity.HasComment("商户退押用户实名表");
+
+                entity.Property(e => e.Id)
+                    .HasColumnName("id")
+                    .HasComment("主键ID");
+
+                entity.Property(e => e.CreateBy)
+                    .HasColumnName("create_by")
+                    .HasColumnType("varchar(50)")
+                    .HasComment("添加人")
+                    .HasCharSet("utf8mb3")
+                    .HasCollation("utf8mb3_general_ci");
+
+                entity.Property(e => e.CreateTime)
+                    .HasColumnName("create_time")
+                    .HasColumnType("datetime")
+                    .HasComment("新增时间");
+
+                entity.Property(e => e.DelFlag)
+                    .HasColumnName("del_flag")
+                    .HasColumnType("varchar(1)")
+                    .HasDefaultValueSql("'0'")
+                    .HasComment("删除标记,0未删除,1已删除")
+                    .HasCharSet("utf8mb3")
+                    .HasCollation("utf8mb3_general_ci");
+
+                entity.Property(e => e.IdCard)
+                    .HasColumnName("id_card")
+                    .HasColumnType("varchar(32)")
+                    .HasComment("身份证")
+                    .HasCharSet("utf8mb3")
+                    .HasCollation("utf8mb3_general_ci");
+
+                entity.Property(e => e.Phone)
+                    .HasColumnName("phone")
+                    .HasColumnType("varchar(16)")
+                    .HasComment("手机号码")
+                    .HasCharSet("utf8mb3")
+                    .HasCollation("utf8mb3_general_ci");
+
+                entity.Property(e => e.Status)
+                    .HasColumnName("status")
+                    .HasComment("0未实名 1已实名");
+
+                entity.Property(e => e.UpdateBy)
+                    .HasColumnName("update_by")
+                    .HasColumnType("varchar(50)")
+                    .HasComment("更新人")
+                    .HasCharSet("utf8mb3")
+                    .HasCollation("utf8mb3_general_ci");
+
+                entity.Property(e => e.UpdateTime)
+                    .HasColumnName("update_time")
+                    .HasColumnType("datetime")
+                    .HasComment("更新时间");
+
+                entity.Property(e => e.Username)
+                    .HasColumnName("username")
+                    .HasColumnType("varchar(32)")
+                    .HasComment("姓名")
+                    .HasCharSet("utf8mb3")
+                    .HasCollation("utf8mb3_general_ci");
+
+                entity.Property(e => e.Version)
+                    .HasColumnName("version")
+                    .HasComment("版本");
+            });
+
+            modelBuilder.Entity<KxsShopCate>(entity =>
+            {
+                entity.ToTable("kxs_shop_cate");
+
+                entity.HasComment("商城分类表");
+
+                entity.Property(e => e.Id)
+                    .HasColumnName("id")
+                    .HasComment("主键ID");
+
+                entity.Property(e => e.ColId)
+                    .HasColumnName("col_id")
+                    .HasColumnType("varchar(30)")
+                    .HasComment("分类编号")
+                    .HasCharSet("utf8mb3")
+                    .HasCollation("utf8mb3_general_ci");
+
+                entity.Property(e => e.CreateTime)
+                    .HasColumnName("create_time")
+                    .HasColumnType("datetime")
+                    .HasComment("新增时间");
+
+                entity.Property(e => e.DelFlag)
+                    .HasColumnName("del_flag")
+                    .HasComment("删除标记,0未删除,1已删除");
+
+                entity.Property(e => e.IconUrl)
+                    .HasColumnName("icon_url")
+                    .HasColumnType("varchar(255)")
+                    .HasComment("图标")
+                    .HasCharSet("utf8mb3")
+                    .HasCollation("utf8mb3_general_ci");
+
+                entity.Property(e => e.IsShow)
+                    .HasColumnName("is_show")
+                    .HasComment("是否展示在商城 0否 1是");
+
+                entity.Property(e => e.Level)
+                    .HasColumnName("level")
+                    .HasComment("分类层级");
+
+                entity.Property(e => e.Name)
+                    .HasColumnName("name")
+                    .HasColumnType("varchar(64)")
+                    .HasComment("分类名称")
+                    .HasCharSet("utf8mb3")
+                    .HasCollation("utf8mb3_general_ci");
+
+                entity.Property(e => e.Pid)
+                    .HasColumnName("pid")
+                    .HasComment("上级ID");
+
+                entity.Property(e => e.Sort)
+                    .HasColumnName("sort")
+                    .HasComment("排序");
+
+                entity.Property(e => e.Status)
+                    .HasColumnName("status")
+                    .HasComment("状态 0禁用 1启用");
+
+                entity.Property(e => e.UpdateTime)
+                    .HasColumnName("update_time")
+                    .HasColumnType("datetime")
+                    .HasComment("更新时间");
+
+                entity.Property(e => e.Version)
+                    .HasColumnName("version")
+                    .HasComment("版本");
+            });
+
+            modelBuilder.Entity<KxsShopGoods>(entity =>
+            {
+                entity.ToTable("kxs_shop_goods");
+
+                entity.HasComment("商城商品表");
+
+                entity.Property(e => e.Id)
+                    .HasColumnName("id")
+                    .HasComment("主键ID");
+
+                entity.Property(e => e.ColId)
+                    .HasColumnName("col_id")
+                    .HasColumnType("varchar(255)")
+                    .HasComment("分类ID")
+                    .HasCharSet("utf8mb3")
+                    .HasCollation("utf8mb3_general_ci");
+
+                entity.Property(e => e.CreateTime)
+                    .HasColumnName("create_time")
+                    .HasColumnType("datetime")
+                    .HasComment("新增时间");
+
+                entity.Property(e => e.DelFlag)
+                    .HasColumnName("del_flag")
+                    .HasComment("删除标记,0未删除,1已删除");
+
+                entity.Property(e => e.Details)
+                    .HasColumnName("details")
+                    .HasColumnType("longtext")
+                    .HasComment("详情")
+                    .HasCharSet("utf8mb3")
+                    .HasCollation("utf8mb3_general_ci");
+
+                entity.Property(e => e.DownTime)
+                    .HasColumnName("down_time")
+                    .HasColumnType("datetime")
+                    .HasComment("下架时间");
+
+                entity.Property(e => e.GoodsName)
+                    .HasColumnName("goods_name")
+                    .HasColumnType("varchar(128)")
+                    .HasComment("商品名称")
+                    .HasCharSet("utf8mb3")
+                    .HasCollation("utf8mb3_general_ci");
+
+                entity.Property(e => e.GoodsType)
+                    .HasColumnName("goods_type")
+                    .HasComment("商品类型 0实物商品 1虚拟物品");
+
+                entity.Property(e => e.LimitCount)
+                    .HasColumnName("limit_count")
+                    .HasComment("限购数量");
+
+                entity.Property(e => e.PicUrl)
+                    .HasColumnName("pic_url")
+                    .HasColumnType("varchar(255)")
+                    .HasComment("封面图")
+                    .HasCharSet("utf8mb3")
+                    .HasCollation("utf8mb3_general_ci");
+
+                entity.Property(e => e.Price)
+                    .HasColumnName("price")
+                    .HasColumnType("decimal(18,2)")
+                    .HasComment("价格");
+
+                entity.Property(e => e.Sort)
+                    .HasColumnName("sort")
+                    .HasDefaultValueSql("'100'")
+                    .HasComment("排序");
+
+                entity.Property(e => e.SpecList)
+                    .HasColumnName("spec_list")
+                    .HasColumnType("varchar(2000)")
+                    .HasComment("sku属性字段")
+                    .HasCharSet("utf8mb3")
+                    .HasCollation("utf8mb3_general_ci");
+
+                entity.Property(e => e.StartByCount)
+                    .HasColumnName("start_by_count")
+                    .HasComment("起购数量");
+
+                entity.Property(e => e.Status)
+                    .HasColumnName("status")
+                    .HasComment("状态 0下架 1上架");
+
+                entity.Property(e => e.Subtitle)
+                    .HasColumnName("subtitle")
+                    .HasColumnType("varchar(255)")
+                    .HasComment("子标题")
+                    .HasCharSet("utf8mb3")
+                    .HasCollation("utf8mb3_general_ci");
+
+                entity.Property(e => e.UpTime)
+                    .HasColumnName("up_time")
+                    .HasColumnType("datetime")
+                    .HasComment("上架时间");
+
+                entity.Property(e => e.UpdateTime)
+                    .HasColumnName("update_time")
+                    .HasColumnType("datetime")
+                    .HasComment("更新时间");
+
+                entity.Property(e => e.Version)
+                    .HasColumnName("version")
+                    .HasComment("版本");
+            });
+
+            modelBuilder.Entity<KxsShopGoodsPic>(entity =>
+            {
+                entity.ToTable("kxs_shop_goods_pic");
+
+                entity.HasComment("商城商品图片表");
+
+                entity.Property(e => e.Id)
+                    .HasColumnName("id")
+                    .HasComment("主键ID");
+
+                entity.Property(e => e.CreateTime)
+                    .HasColumnName("create_time")
+                    .HasColumnType("datetime")
+                    .HasComment("新增时间");
+
+                entity.Property(e => e.DelFlag)
+                    .HasColumnName("del_flag")
+                    .HasComment("删除标记,0未删除,1已删除");
+
+                entity.Property(e => e.GoodsId)
+                    .HasColumnName("goods_id")
+                    .HasComment("商品ID");
+
+                entity.Property(e => e.Sort)
+                    .HasColumnName("sort")
+                    .HasComment("排序");
+
+                entity.Property(e => e.UpdateTime)
+                    .HasColumnName("update_time")
+                    .HasColumnType("datetime")
+                    .HasComment("更新时间");
+
+                entity.Property(e => e.Url)
+                    .HasColumnName("url")
+                    .HasColumnType("varchar(255)")
+                    .HasComment("图片地址")
+                    .HasCharSet("utf8mb3")
+                    .HasCollation("utf8mb3_general_ci");
+
+                entity.Property(e => e.Version)
+                    .HasColumnName("version")
+                    .HasComment("版本");
+            });
+
+            modelBuilder.Entity<KxsShopGoodsSku>(entity =>
+            {
+                entity.ToTable("kxs_shop_goods_sku");
+
+                entity.HasComment("商城商品SKU表");
+
+                entity.Property(e => e.Id)
+                    .HasColumnName("id")
+                    .HasComment("主键ID");
+
+                entity.Property(e => e.CreateTime)
+                    .HasColumnName("create_time")
+                    .HasColumnType("datetime")
+                    .HasComment("新增时间");
+
+                entity.Property(e => e.DelFlag)
+                    .HasColumnName("del_flag")
+                    .HasComment("删除标记,0未删除,1已删除");
+
+                entity.Property(e => e.GoodId)
+                    .HasColumnName("good_id")
+                    .HasComment("商品ID");
+
+                entity.Property(e => e.Image)
+                    .HasColumnName("image")
+                    .HasColumnType("varchar(255)")
+                    .HasComment("sku图片")
+                    .HasCharSet("utf8mb3")
+                    .HasCollation("utf8mb3_general_ci");
+
+                entity.Property(e => e.LimitCount)
+                    .HasColumnName("limit_count")
+                    .HasComment("限购数量");
+
+                entity.Property(e => e.Price)
+                    .HasColumnName("price")
+                    .HasColumnType("decimal(18,2)")
+                    .HasComment("售价");
+
+                entity.Property(e => e.Sales)
+                    .HasColumnName("sales")
+                    .HasComment("销量");
+
+                entity.Property(e => e.Specifications)
+                    .HasColumnName("specifications")
+                    .HasColumnType("varchar(1023)")
+                    .HasComment("商品规格值列表,采用JSON数组格式")
+                    .HasCharSet("utf8mb3")
+                    .HasCollation("utf8mb3_general_ci");
+
+                entity.Property(e => e.StartByCount)
+                    .HasColumnName("start_by_count")
+                    .HasComment("起购数量");
+
+                entity.Property(e => e.StockNum)
+                    .HasColumnName("stock_num")
+                    .HasComment("库存数量");
+
+                entity.Property(e => e.UpdateTime)
+                    .HasColumnName("update_time")
+                    .HasColumnType("datetime")
+                    .HasComment("更新时间");
+
+                entity.Property(e => e.Version)
+                    .HasColumnName("version")
+                    .HasComment("版本");
+            });
+
+            modelBuilder.Entity<KxsShopGoodsSpec>(entity =>
+            {
+                entity.ToTable("kxs_shop_goods_spec");
+
+                entity.HasComment("商城商品SKU记录表");
+
+                entity.Property(e => e.Id)
+                    .HasColumnName("id")
+                    .HasComment("主键ID");
+
+                entity.Property(e => e.CreateTime)
+                    .HasColumnName("create_time")
+                    .HasColumnType("datetime")
+                    .HasComment("新增时间");
+
+                entity.Property(e => e.DelFlag)
+                    .HasColumnName("del_flag")
+                    .HasComment("删除标记,0未删除,1已删除");
+
+                entity.Property(e => e.GoodsId)
+                    .HasColumnName("goods_id")
+                    .HasComment("商品ID");
+
+                entity.Property(e => e.Sort)
+                    .HasColumnName("sort")
+                    .HasComment("排序");
+
+                entity.Property(e => e.Specifications)
+                    .HasColumnName("specifications")
+                    .HasColumnType("varchar(255)")
+                    .HasComment("商品规格名称")
+                    .HasCharSet("utf8mb3")
+                    .HasCollation("utf8mb3_general_ci");
+
+                entity.Property(e => e.UpdateTime)
+                    .HasColumnName("update_time")
+                    .HasColumnType("datetime")
+                    .HasComment("更新时间");
+
+                entity.Property(e => e.Value)
+                    .HasColumnName("value")
+                    .HasColumnType("varchar(255)")
+                    .HasComment("商品规格值")
+                    .HasCharSet("utf8mb3")
+                    .HasCollation("utf8mb3_general_ci");
+
+                entity.Property(e => e.Version)
+                    .HasColumnName("version")
+                    .HasComment("版本");
+            });
+
+            modelBuilder.Entity<KxsShopOrder>(entity =>
+            {
+                entity.ToTable("kxs_shop_order");
+
+                entity.HasComment("商城订单表");
+
+                entity.HasIndex(e => new { e.Status, e.UserId })
+                    .HasName("query");
+
+                entity.Property(e => e.Id)
+                    .HasColumnName("id")
+                    .HasComment("主键ID");
+
+                entity.Property(e => e.Address)
+                    .HasColumnName("address")
+                    .HasColumnType("varchar(128)")
+                    .HasComment("收货地址")
+                    .HasCharSet("utf8mb3")
+                    .HasCollation("utf8mb3_general_ci");
+
+                entity.Property(e => e.Consignee)
+                    .HasColumnName("consignee")
+                    .HasColumnType("varchar(32)")
+                    .HasComment("收货人")
+                    .HasCharSet("utf8mb3")
+                    .HasCollation("utf8mb3_general_ci");
+
+                entity.Property(e => e.CreateTime)
+                    .HasColumnName("create_time")
+                    .HasColumnType("datetime")
+                    .HasComment("新增时间");
+
+                entity.Property(e => e.DelFlag)
+                    .HasColumnName("del_flag")
+                    .HasComment("删除标记,0未删除,1已删除");
+
+                entity.Property(e => e.ErpName)
+                    .HasColumnName("erp_name")
+                    .HasColumnType("varchar(64)")
+                    .HasComment("快递公司")
+                    .HasCharSet("utf8mb3")
+                    .HasCollation("utf8mb3_general_ci");
+
+                entity.Property(e => e.ErpSn)
+                    .HasColumnName("erp_sn")
+                    .HasColumnType("varchar(32)")
+                    .HasComment("快递单号")
+                    .HasCharSet("utf8mb3")
+                    .HasCollation("utf8mb3_general_ci");
+
+                entity.Property(e => e.GetMode)
+                    .HasColumnName("get_mode")
+                    .HasComment("提货方式 0自提 1邮寄");
+
+                entity.Property(e => e.OrderSn)
+                    .HasColumnName("order_sn")
+                    .HasColumnType("varchar(32)")
+                    .HasComment("订单号")
+                    .HasCharSet("utf8mb3")
+                    .HasCollation("utf8mb3_general_ci");
+
+                entity.Property(e => e.OrderType)
+                    .HasColumnName("order_type")
+                    .HasComment("订单类型 0商城订单 1分仓额度 2小分仓额度 3小盟主订单 4大盟主订单");
+
+                entity.Property(e => e.PayPrice)
+                    .HasColumnName("pay_price")
+                    .HasColumnType("decimal(18,2)")
+                    .HasComment("支付金额");
+
+                entity.Property(e => e.PayTime)
+                    .HasColumnName("pay_time")
+                    .HasColumnType("datetime")
+                    .HasComment("支付时间");
+
+                entity.Property(e => e.PayType)
+                    .HasColumnName("pay_type")
+                    .HasComment("支付渠道 0余额 1支付宝 2微信 3盟主储蓄金");
+
+                entity.Property(e => e.Phone)
+                    .HasColumnName("phone")
+                    .HasColumnType("varchar(18)")
+                    .HasComment("收货电话")
+                    .HasCharSet("utf8mb3")
+                    .HasCollation("utf8mb3_general_ci");
+
+                entity.Property(e => e.Remark)
+                    .HasColumnName("remark")
+                    .HasColumnType("varchar(255)")
+                    .HasComment("备注")
+                    .HasCharSet("utf8mb4")
+                    .HasCollation("utf8mb4_0900_ai_ci");
+
+                entity.Property(e => e.ReturnPrice)
+                    .HasColumnName("return_price")
+                    .HasColumnType("decimal(18,2)")
+                    .HasComment("退款金额");
+
+                entity.Property(e => e.ReturnReason)
+                    .HasColumnName("return_reason")
+                    .HasColumnType("varchar(255)")
+                    .HasComment("退货原因")
+                    .HasCharSet("utf8mb3")
+                    .HasCollation("utf8mb3_general_ci");
+
+                entity.Property(e => e.ReturnStatus)
+                    .HasColumnName("return_status")
+                    .HasComment("退款状态 0未申请 1已申请 2申请通过 3申请驳回");
+
+                entity.Property(e => e.ReturnTime)
+                    .HasColumnName("return_time")
+                    .HasColumnType("datetime")
+                    .HasComment("申请退款时间");
+
+                entity.Property(e => e.SendTime)
+                    .HasColumnName("send_time")
+                    .HasColumnType("datetime")
+                    .HasComment("发货时间");
+
+                entity.Property(e => e.Status)
+                    .HasColumnName("status")
+                    .HasComment("状态 0未支付 1已支付 2已发货 3已完成 4已取消");
+
+                entity.Property(e => e.TopUserId)
+                    .HasColumnName("top_user_id")
+                    .HasComment("顶级创客ID");
+
+                entity.Property(e => e.TotalPrice)
+                    .HasColumnName("total_price")
+                    .HasColumnType("decimal(18,2)")
+                    .HasComment("订单金额");
+
+                entity.Property(e => e.TradeNo)
+                    .HasColumnName("trade_no")
+                    .HasColumnType("varchar(64)")
+                    .HasComment("交易流水号")
+                    .HasCharSet("utf8mb3")
+                    .HasCollation("utf8mb3_general_ci");
+
+                entity.Property(e => e.UpdateBy)
+                    .HasColumnName("update_by")
+                    .HasColumnType("varchar(64)")
+                    .HasComment("操作人")
+                    .HasCharSet("utf8mb3")
+                    .HasCollation("utf8mb3_general_ci");
+
+                entity.Property(e => e.UpdateTime)
+                    .HasColumnName("update_time")
+                    .HasColumnType("datetime")
+                    .HasComment("更新时间");
+
+                entity.Property(e => e.UserId)
+                    .HasColumnName("user_id")
+                    .HasComment("用户ID");
+
+                entity.Property(e => e.Version)
+                    .HasColumnName("version")
+                    .HasComment("版本");
+
+                entity.Property(e => e.WarehouseId)
+                    .HasColumnName("warehouse_id")
+                    .HasComment("自提仓库ID");
+            });
+
+            modelBuilder.Entity<KxsShopOrderInfo>(entity =>
+            {
+                entity.ToTable("kxs_shop_order_info");
+
+                entity.HasComment("商城订单详情表");
+
+                entity.HasIndex(e => e.OrderId)
+                    .HasName("query");
+
+                entity.Property(e => e.Id)
+                    .HasColumnName("id")
+                    .HasComment("主键ID");
+
+                entity.Property(e => e.CreateTime)
+                    .HasColumnName("create_time")
+                    .HasColumnType("datetime")
+                    .HasComment("新增时间");
+
+                entity.Property(e => e.DelFlag)
+                    .HasColumnName("del_flag")
+                    .HasComment("删除标记,0未删除,1已删除");
+
+                entity.Property(e => e.GoodsId)
+                    .HasColumnName("goods_id")
+                    .HasComment("商品ID");
+
+                entity.Property(e => e.GoodsName)
+                    .HasColumnName("goods_name")
+                    .HasColumnType("varchar(128)")
+                    .HasComment("商品名称")
+                    .HasCharSet("utf8mb3")
+                    .HasCollation("utf8mb3_general_ci");
+
+                entity.Property(e => e.GoodsPrice)
+                    .HasColumnName("goods_price")
+                    .HasColumnType("decimal(18,2)")
+                    .HasComment("商品单价");
+
+                entity.Property(e => e.Number)
+                    .HasColumnName("number")
+                    .HasComment("商品数量");
+
+                entity.Property(e => e.OrderId)
+                    .HasColumnName("order_id")
+                    .HasComment("订单ID");
+
+                entity.Property(e => e.PicUrl)
+                    .HasColumnName("pic_url")
+                    .HasColumnType("varchar(255)")
+                    .HasComment("封面图")
+                    .HasCharSet("utf8mb3")
+                    .HasCollation("utf8mb3_general_ci");
+
+                entity.Property(e => e.SkuId)
+                    .HasColumnName("sku_id")
+                    .HasComment("商品skuId");
+
+                entity.Property(e => e.Specifications)
+                    .HasColumnName("specifications")
+                    .HasColumnType("varchar(1023)")
+                    .HasComment("商品货品的规格列表")
+                    .HasCharSet("utf8mb3")
+                    .HasCollation("utf8mb3_general_ci");
+
+                entity.Property(e => e.UpdateTime)
+                    .HasColumnName("update_time")
+                    .HasColumnType("datetime")
+                    .HasComment("更新时间");
+
+                entity.Property(e => e.Version)
+                    .HasColumnName("version")
+                    .HasComment("版本");
+            });
+
+            modelBuilder.Entity<KxsTicket>(entity =>
+            {
+                entity.ToTable("kxs_ticket");
+
+                entity.HasComment("客小爽券码表");
+
+                entity.Property(e => e.Id)
+                    .HasColumnName("id")
+                    .HasComment("主键ID");
+
+                entity.Property(e => e.CreateTime)
+                    .HasColumnName("create_time")
+                    .HasColumnType("datetime")
+                    .HasComment("新增时间");
+
+                entity.Property(e => e.DelFlag)
+                    .HasColumnName("del_flag")
+                    .HasComment("删除标记,0未删除,1已删除");
+
+                entity.Property(e => e.LeaderId)
+                    .HasColumnName("leader_id")
+                    .HasComment("盟主用户ID");
+
+                entity.Property(e => e.OrderId)
+                    .HasColumnName("order_id")
+                    .HasComment("购买订单ID");
+
+                entity.Property(e => e.PartnerId)
+                    .HasColumnName("partner_id")
+                    .HasComment("合伙人用户ID");
+
+                entity.Property(e => e.Status)
+                    .HasColumnName("status")
+                    .HasComment("状态 0未使用 1已使用 2已申请冻结");
+
+                entity.Property(e => e.TicketAllotPath)
+                    .HasColumnName("ticket_allot_path")
+                    .HasColumnType("varchar(255)")
+                    .HasComment("机具卷轨迹记录")
+                    .HasCharSet("utf8mb3")
+                    .HasCollation("utf8mb3_general_ci");
+
+                entity.Property(e => e.TicketCode)
+                    .HasColumnName("ticket_code")
+                    .HasColumnType("varchar(32)")
+                    .HasComment("券码")
+                    .HasCharSet("utf8mb3")
+                    .HasCollation("utf8mb3_general_ci");
+
+                entity.Property(e => e.TicketType)
+                    .HasColumnName("ticket_type")
+                    .HasComment("券码类型 0电签 1大pos");
+
+                entity.Property(e => e.UpdateTime)
+                    .HasColumnName("update_time")
+                    .HasColumnType("datetime")
+                    .HasComment("更新时间");
+
+                entity.Property(e => e.UserId)
+                    .HasColumnName("user_id")
+                    .HasComment("用户ID");
+
+                entity.Property(e => e.Version)
+                    .HasColumnName("version")
+                    .HasComment("版本");
+            });
+
+            modelBuilder.Entity<KxsTicketTransfer>(entity =>
+            {
+                entity.ToTable("kxs_ticket_transfer");
+
+                entity.HasComment("客小爽券码划拨记录表");
+
+                entity.Property(e => e.Id)
+                    .HasColumnName("id")
+                    .HasComment("主键ID");
+
+                entity.Property(e => e.CreateTime)
+                    .HasColumnName("create_time")
+                    .HasColumnType("datetime")
+                    .HasComment("新增时间");
+
+                entity.Property(e => e.DelFlag)
+                    .HasColumnName("del_flag")
+                    .HasComment("删除标记,0未删除,1已删除");
+
+                entity.Property(e => e.OrderSn)
+                    .HasColumnName("order_sn")
+                    .HasColumnType("varchar(64)")
+                    .HasComment("订单号")
+                    .HasCharSet("utf8mb3")
+                    .HasCollation("utf8mb3_general_ci");
+
+                entity.Property(e => e.Remark)
+                    .HasColumnName("remark")
+                    .HasColumnType("varchar(255)")
+                    .HasComment("备注")
+                    .HasCharSet("utf8mb3")
+                    .HasCollation("utf8mb3_general_ci");
+
+                entity.Property(e => e.SendUserCode)
+                    .HasColumnName("send_user_code")
+                    .HasColumnType("varchar(32)")
+                    .HasComment("拨出用户编码")
+                    .HasCharSet("utf8mb3")
+                    .HasCollation("utf8mb3_general_ci");
+
+                entity.Property(e => e.SendUserId)
+                    .HasColumnName("send_user_id")
+                    .HasComment("拨出用户ID");
+
+                entity.Property(e => e.SendUserName)
+                    .HasColumnName("send_user_name")
+                    .HasColumnType("varchar(32)")
+                    .HasComment("拨出用户姓名")
+                    .HasCharSet("utf8mb3")
+                    .HasCollation("utf8mb3_general_ci");
+
+                entity.Property(e => e.TicketType)
+                    .HasColumnName("ticket_type")
+                    .HasComment("券码类型 0电签 1大pos");
+
+                entity.Property(e => e.ToUserCode)
+                    .HasColumnName("to_user_code")
+                    .HasColumnType("varchar(32)")
+                    .HasComment("拨入用户编码")
+                    .HasCharSet("utf8mb3")
+                    .HasCollation("utf8mb3_general_ci");
+
+                entity.Property(e => e.ToUserId)
+                    .HasColumnName("to_user_id")
+                    .HasComment("拨入用户ID");
+
+                entity.Property(e => e.ToUserName)
+                    .HasColumnName("to_user_name")
+                    .HasColumnType("varchar(32)")
+                    .HasComment("拨入用户姓名")
+                    .HasCharSet("utf8mb3")
+                    .HasCollation("utf8mb3_general_ci");
+
+                entity.Property(e => e.TransferNum)
+                    .HasColumnName("transfer_num")
+                    .HasComment("数量");
+
+                entity.Property(e => e.UpdateTime)
+                    .HasColumnName("update_time")
+                    .HasColumnType("datetime")
+                    .HasComment("更新时间");
+
+                entity.Property(e => e.Version)
+                    .HasColumnName("version")
+                    .HasComment("版本");
+            });
+
+            modelBuilder.Entity<KxsTicketTransferInfo>(entity =>
+            {
+                entity.ToTable("kxs_ticket_transfer_info");
+
+                entity.HasComment("客小爽券码划拨记录明细表");
+
+                entity.Property(e => e.Id)
+                    .HasColumnName("id")
+                    .HasComment("主键ID");
+
+                entity.Property(e => e.CreateTime)
+                    .HasColumnName("create_time")
+                    .HasColumnType("datetime")
+                    .HasComment("新增时间");
+
+                entity.Property(e => e.DelFlag)
+                    .HasColumnName("del_flag")
+                    .HasComment("删除标记,0未删除,1已删除");
+
+                entity.Property(e => e.OrderSn)
+                    .HasColumnName("order_sn")
+                    .HasColumnType("varchar(50)")
+                    .HasComment("划拨订单号")
+                    .HasCharSet("utf8mb3")
+                    .HasCollation("utf8mb3_general_ci");
+
+                entity.Property(e => e.TicketCode)
+                    .HasColumnName("ticket_code")
+                    .HasColumnType("varchar(50)")
+                    .HasComment("券码")
+                    .HasCharSet("utf8mb3")
+                    .HasCollation("utf8mb3_general_ci");
+
+                entity.Property(e => e.TicketId)
+                    .HasColumnName("ticket_id")
+                    .HasComment("券码ID");
+
+                entity.Property(e => e.UpdateTime)
+                    .HasColumnName("update_time")
+                    .HasColumnType("datetime")
+                    .HasComment("更新时间");
+
+                entity.Property(e => e.Version)
+                    .HasColumnName("version")
+                    .HasComment("版本");
+            });
+
+            modelBuilder.Entity<KxsTicketUpgrade>(entity =>
+            {
+                entity.ToTable("kxs_ticket_upgrade");
+
+                entity.HasComment("券码升级记录表");
+
+                entity.Property(e => e.Id)
+                    .HasColumnName("id")
+                    .HasComment("主键ID");
+
+                entity.Property(e => e.CreateTime)
+                    .HasColumnName("create_time")
+                    .HasColumnType("datetime")
+                    .HasComment("新增时间");
+
+                entity.Property(e => e.DelFlag)
+                    .HasColumnName("del_flag")
+                    .HasColumnType("varchar(1)")
+                    .HasDefaultValueSql("'0'")
+                    .HasComment("删除标记,0未删除,1已删除")
+                    .HasCharSet("utf8mb3")
+                    .HasCollation("utf8mb3_general_ci");
+
+                entity.Property(e => e.Remark)
+                    .HasColumnName("remark")
+                    .HasColumnType("varchar(255)")
+                    .HasComment("备注")
+                    .HasCharSet("utf8mb3")
+                    .HasCollation("utf8mb3_general_ci");
+
+                entity.Property(e => e.SourceCount)
+                    .HasColumnName("source_count")
+                    .HasComment("升级前电签券数量");
+
+                entity.Property(e => e.SourceTickets)
+                    .HasColumnName("source_tickets")
+                    .HasColumnType("varchar(2056)")
+                    .HasComment("升级前的电签券")
+                    .HasCharSet("utf8mb3")
+                    .HasCollation("utf8mb3_general_ci");
+
+                entity.Property(e => e.UpCount)
+                    .HasColumnName("up_count")
+                    .HasComment("升级数量");
+
+                entity.Property(e => e.UpTickets)
+                    .HasColumnName("up_tickets")
+                    .HasColumnType("varchar(1000)")
+                    .HasComment("升级后的券 逗号隔开")
+                    .HasCharSet("utf8mb3")
+                    .HasCollation("utf8mb3_general_ci");
+
+                entity.Property(e => e.UpdateTime)
+                    .HasColumnName("update_time")
+                    .HasColumnType("datetime")
+                    .HasComment("更新时间");
+
+                entity.Property(e => e.UserCode)
+                    .HasColumnName("user_code")
+                    .HasColumnType("varchar(32)")
+                    .HasComment("创客编号")
+                    .HasCharSet("utf8mb3")
+                    .HasCollation("utf8mb3_general_ci");
+
+                entity.Property(e => e.UserId)
+                    .HasColumnName("user_id")
+                    .HasComment("用户ID");
+
+                entity.Property(e => e.Username)
+                    .HasColumnName("username")
+                    .HasColumnType("varchar(64)")
+                    .HasComment("创客姓名")
+                    .HasCharSet("utf8mb3")
+                    .HasCollation("utf8mb3_general_ci");
+
+                entity.Property(e => e.Version)
+                    .HasColumnName("version")
+                    .HasComment("版本");
+            });
+
+            modelBuilder.Entity<UndoLog>(entity =>
+            {
+                entity.HasNoKey();
+
+                entity.ToTable("undo_log");
+
+                entity.HasComment("AT transaction mode undo table");
+
+                entity.HasIndex(e => e.LogCreated)
+                    .HasName("ix_log_created");
+
+                entity.HasIndex(e => new { e.Xid, e.BranchId })
+                    .HasName("ux_undo_log")
+                    .IsUnique();
+
+                entity.Property(e => e.BranchId)
+                    .HasColumnName("branch_id")
+                    .HasComment("branch transaction id");
+
+                entity.Property(e => e.Context)
+                    .IsRequired()
+                    .HasColumnName("context")
+                    .HasColumnType("varchar(128)")
+                    .HasComment("undo_log context,such as serialization")
+                    .HasCharSet("utf8mb4")
+                    .HasCollation("utf8mb4_0900_ai_ci");
+
+                entity.Property(e => e.LogCreated)
+                    .HasColumnName("log_created")
+                    .HasComment("create datetime");
+
+                entity.Property(e => e.LogModified)
+                    .HasColumnName("log_modified")
+                    .HasComment("modify datetime");
+
+                entity.Property(e => e.LogStatus)
+                    .HasColumnName("log_status")
+                    .HasComment("0:normal status,1:defense status");
+
+                entity.Property(e => e.RollbackInfo)
+                    .IsRequired()
+                    .HasColumnName("rollback_info")
+                    .HasComment("rollback info");
+
+                entity.Property(e => e.Xid)
+                    .IsRequired()
+                    .HasColumnName("xid")
+                    .HasColumnType("varchar(128)")
+                    .HasComment("global transaction id")
+                    .HasCharSet("utf8mb4")
+                    .HasCollation("utf8mb4_0900_ai_ci");
+            });
+
+            OnModelCreatingPartial(modelBuilder);
+        }
+
+        partial void OnModelCreatingPartial(ModelBuilder modelBuilder);
+    }
+}

+ 3 - 3
Startup.cs

@@ -166,9 +166,9 @@ namespace MySystem
             // }
             // if(Library.ConfigurationManager.EnvironmentFlag == 2)
             // {
-                LeaderCompPrizeHelper.Instance.Start(); //领导人达标奖
-                RecommandKingHelper.Instance.Start(); //推荐王
-                AddSourcePosSnHelper.Instance.Start(); //补来源机具
+                // LeaderCompPrizeHelper.Instance.Start(); //领导人达标奖
+                // RecommandKingHelper.Instance.Start(); //推荐王
+                // AddSourcePosSnHelper.Instance.Start(); //补来源机具
             // }
 
             // LeaderCompPrizeHelper.Instance.StartTest();

+ 1 - 0
appsettings.Development.json

@@ -28,6 +28,7 @@
     "RdsStatSqlConnStr": "server=47.108.62.166;port=3306;user=root;password=HDlNs1ZpG5iR9D9I;database=KxsStatServer;charset=utf8;",
     "JavaUserSqlConnStr": "server=47.109.61.191;port=3306;user=root;password=HDlNs1ZpG5iR9D9I;database=kxs_user;charset=utf8;",
     "JavaStatSqlConnStr": "server=47.109.61.191;port=3306;user=root;password=HDlNs1ZpG5iR9D9I;database=kxs_stat;charset=utf8;",
+    "JavaProductSqlConnStr": "server=47.109.61.191;port=3306;user=root;password=HDlNs1ZpG5iR9D9I;database=kxs_product;charset=utf8;",
     "RedisConnStr": "47.108.62.166:6379,password=klm@redis,DefaultDatabase=1,poolsize=500,preheat=50,asyncPipeline=true",
     "IOSAppVersion": "1.0.0",
     "AndroidAppVersion": "1.0.0",