|
@@ -2120,6 +2120,10 @@ namespace MySystem.MainModels
|
|
|
|
|
|
entity.Property(e => e.MaxDivi).HasColumnType("decimal(18,2)");
|
|
|
|
|
|
+ entity.Property(e => e.MerchantActualAmount)
|
|
|
+ .HasColumnType("decimal(18,2)")
|
|
|
+ .HasComment("商家实收");
|
|
|
+
|
|
|
entity.Property(e => e.MerchantId).HasColumnType("int(11)");
|
|
|
|
|
|
entity.Property(e => e.OrderNo)
|
|
@@ -5920,6 +5924,10 @@ namespace MySystem.MainModels
|
|
|
{
|
|
|
entity.Property(e => e.Id).HasColumnType("int(11)");
|
|
|
|
|
|
+ entity.Property(e => e.ActStat)
|
|
|
+ .HasColumnType("int(11)")
|
|
|
+ .HasComment("激活统计标记");
|
|
|
+
|
|
|
entity.Property(e => e.ActivationDate).HasColumnType("datetime");
|
|
|
|
|
|
entity.Property(e => e.ActivationStatus).HasColumnType("int(11)");
|