瀏覽代碼

交易记录添加激活字段

lichunlei 2 年之前
父節點
當前提交
f27f888d57

+ 1 - 0
AppStart/Helper/SycnSpServer/SycnSpTradeService.cs

@@ -248,6 +248,7 @@ namespace MySystem
                                                 MerUserId = pos.UserId, //商户直属创客
                                                 SeoTitle = HelpProfitFlag,
                                                 Version = MerHelpFlag == 2 ? 1 : 0,
+                                                ActStatus = pos.ActivationState,
                                             });
                                         }
                                         decimal CheckMoney = 1000;

+ 1 - 0
Models/TradeRecord.cs

@@ -40,5 +40,6 @@ namespace MySystem.Models
         public string ParentNav { get; set; }
         public int PayType { get; set; }
         public int VipFlag { get; set; }
+        public int ActStatus { get; set; }
     }
 }

+ 2 - 0
Models/WebCMSEntities.cs

@@ -14517,6 +14517,8 @@ namespace MySystem.Models
             {
                 entity.Property(e => e.Id).HasColumnType("int(11)");
 
+                entity.Property(e => e.ActStatus).HasColumnType("int(11)");
+
                 entity.Property(e => e.BankCardType).HasColumnType("int(11)");
 
                 entity.Property(e => e.BrandId).HasColumnType("int(11)");

+ 1 - 0
PxcModels/TradeRecord.cs

@@ -40,5 +40,6 @@ namespace MySystem.PxcModels
         public string ParentNav { get; set; }
         public int PayType { get; set; }
         public int VipFlag { get; set; }
+        public int ActStatus { get; set; }
     }
 }

+ 2 - 0
PxcModels/WebCMSEntities.cs

@@ -14517,6 +14517,8 @@ namespace MySystem.PxcModels
             {
                 entity.Property(e => e.Id).HasColumnType("int(11)");
 
+                entity.Property(e => e.ActStatus).HasColumnType("int(11)");
+
                 entity.Property(e => e.BankCardType).HasColumnType("int(11)");
 
                 entity.Property(e => e.BrandId).HasColumnType("int(11)");