소스 검색

交易记录添加激活字段

lichunlei 2 년 전
부모
커밋
f27f888d57
5개의 변경된 파일7개의 추가작업 그리고 0개의 파일을 삭제
  1. 1 0
      AppStart/Helper/SycnSpServer/SycnSpTradeService.cs
  2. 1 0
      Models/TradeRecord.cs
  3. 2 0
      Models/WebCMSEntities.cs
  4. 1 0
      PxcModels/TradeRecord.cs
  5. 2 0
      PxcModels/WebCMSEntities.cs

+ 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)");