|
|
@@ -132,6 +132,7 @@ namespace MySystem.Models
|
|
|
public virtual DbSet<PosMerchantInfoBak> PosMerchantInfoBak { get; set; }
|
|
|
public virtual DbSet<PosMerchantOtherInfo> PosMerchantOtherInfo { get; set; }
|
|
|
public virtual DbSet<PosMerchantTradeSummay> PosMerchantTradeSummay { get; set; }
|
|
|
+ public virtual DbSet<PreAmountRecord> PreAmountRecord { get; set; }
|
|
|
public virtual DbSet<PreSendStockDetail> PreSendStockDetail { get; set; }
|
|
|
public virtual DbSet<ProductComment> ProductComment { get; set; }
|
|
|
public virtual DbSet<ProductCommentAgree> ProductCommentAgree { get; set; }
|
|
|
@@ -9059,6 +9060,52 @@ namespace MySystem.Models
|
|
|
entity.Property(e => e.UpdateDate).HasColumnType("datetime");
|
|
|
});
|
|
|
|
|
|
+ modelBuilder.Entity<PreAmountRecord>(entity =>
|
|
|
+ {
|
|
|
+ entity.Property(e => e.Id).HasColumnType("int(11)");
|
|
|
+
|
|
|
+ entity.Property(e => e.AfterAmount).HasColumnType("decimal(18,2)");
|
|
|
+
|
|
|
+ entity.Property(e => e.AmountType).HasColumnType("int(11)");
|
|
|
+
|
|
|
+ entity.Property(e => e.ApplyId).HasColumnType("int(11)");
|
|
|
+
|
|
|
+ entity.Property(e => e.BeforeAmount).HasColumnType("decimal(18,2)");
|
|
|
+
|
|
|
+ entity.Property(e => e.CreateDate).HasColumnType("datetime");
|
|
|
+
|
|
|
+ entity.Property(e => e.OperateType).HasColumnType("int(11)");
|
|
|
+
|
|
|
+ entity.Property(e => e.PayMode).HasColumnType("int(11)");
|
|
|
+
|
|
|
+ entity.Property(e => e.QueryCount).HasColumnType("int(11)");
|
|
|
+
|
|
|
+ entity.Property(e => e.SeoDescription)
|
|
|
+ .HasColumnType("varchar(500)")
|
|
|
+ .HasCharSet("utf8")
|
|
|
+ .HasCollation("utf8_general_ci");
|
|
|
+
|
|
|
+ entity.Property(e => e.SeoKeyword)
|
|
|
+ .HasColumnType("varchar(200)")
|
|
|
+ .HasCharSet("utf8")
|
|
|
+ .HasCollation("utf8_general_ci");
|
|
|
+
|
|
|
+ entity.Property(e => e.SeoTitle)
|
|
|
+ .HasColumnType("varchar(100)")
|
|
|
+ .HasCharSet("utf8")
|
|
|
+ .HasCollation("utf8_general_ci");
|
|
|
+
|
|
|
+ entity.Property(e => e.Sort).HasColumnType("int(11)");
|
|
|
+
|
|
|
+ entity.Property(e => e.Status).HasColumnType("int(11)");
|
|
|
+
|
|
|
+ entity.Property(e => e.UpdateDate).HasColumnType("datetime");
|
|
|
+
|
|
|
+ entity.Property(e => e.UseAmount).HasColumnType("decimal(18,2)");
|
|
|
+
|
|
|
+ entity.Property(e => e.UserId).HasColumnType("int(11)");
|
|
|
+ });
|
|
|
+
|
|
|
modelBuilder.Entity<PreSendStockDetail>(entity =>
|
|
|
{
|
|
|
entity.Property(e => e.Id).HasColumnType("int(11)");
|
|
|
@@ -14518,6 +14565,10 @@ namespace MySystem.Models
|
|
|
|
|
|
entity.Property(e => e.LockStatus).HasColumnType("int(11)");
|
|
|
|
|
|
+ entity.Property(e => e.PreTempAmount).HasColumnType("decimal(18,2)");
|
|
|
+
|
|
|
+ entity.Property(e => e.PreTempAmountForBalance).HasColumnType("decimal(18,2)");
|
|
|
+
|
|
|
entity.Property(e => e.QueryCount).HasColumnType("int(11)");
|
|
|
|
|
|
entity.Property(e => e.SeoDescription)
|