|
@@ -71,6 +71,8 @@ namespace MySystem.Models
|
|
|
public virtual DbSet<KqProducts> KqProducts { get; set; }
|
|
public virtual DbSet<KqProducts> KqProducts { get; set; }
|
|
|
public virtual DbSet<LeaderAccountRecord> LeaderAccountRecord { get; set; }
|
|
public virtual DbSet<LeaderAccountRecord> LeaderAccountRecord { get; set; }
|
|
|
public virtual DbSet<LeaderCompPrize> LeaderCompPrize { get; set; }
|
|
public virtual DbSet<LeaderCompPrize> LeaderCompPrize { get; set; }
|
|
|
|
|
+ public virtual DbSet<LeaderCompTmp> LeaderCompTmp { get; set; }
|
|
|
|
|
+ public virtual DbSet<LeaderCompTradeStat> LeaderCompTradeStat { get; set; }
|
|
|
public virtual DbSet<LeaderReserveRecord> LeaderReserveRecord { get; set; }
|
|
public virtual DbSet<LeaderReserveRecord> LeaderReserveRecord { get; set; }
|
|
|
public virtual DbSet<Leaders> Leaders { get; set; }
|
|
public virtual DbSet<Leaders> Leaders { get; set; }
|
|
|
public virtual DbSet<MachineApply> MachineApply { get; set; }
|
|
public virtual DbSet<MachineApply> MachineApply { get; set; }
|
|
@@ -102,6 +104,7 @@ namespace MySystem.Models
|
|
|
public virtual DbSet<Merchants> Merchants { get; set; }
|
|
public virtual DbSet<Merchants> Merchants { get; set; }
|
|
|
public virtual DbSet<MobileCodeCheck> MobileCodeCheck { get; set; }
|
|
public virtual DbSet<MobileCodeCheck> MobileCodeCheck { get; set; }
|
|
|
public virtual DbSet<MsgAlert> MsgAlert { get; set; }
|
|
public virtual DbSet<MsgAlert> MsgAlert { get; set; }
|
|
|
|
|
+ public virtual DbSet<MsgAlertUserList> MsgAlertUserList { get; set; }
|
|
|
public virtual DbSet<MsgBlackList> MsgBlackList { get; set; }
|
|
public virtual DbSet<MsgBlackList> MsgBlackList { get; set; }
|
|
|
public virtual DbSet<MsgPersonal> MsgPersonal { get; set; }
|
|
public virtual DbSet<MsgPersonal> MsgPersonal { get; set; }
|
|
|
public virtual DbSet<MsgPlacard> MsgPlacard { get; set; }
|
|
public virtual DbSet<MsgPlacard> MsgPlacard { get; set; }
|
|
@@ -235,6 +238,7 @@ namespace MySystem.Models
|
|
|
public virtual DbSet<UserCardForWeChat> UserCardForWeChat { get; set; }
|
|
public virtual DbSet<UserCardForWeChat> UserCardForWeChat { get; set; }
|
|
|
public virtual DbSet<UserCardRecord> UserCardRecord { get; set; }
|
|
public virtual DbSet<UserCardRecord> UserCardRecord { get; set; }
|
|
|
public virtual DbSet<UserCashRecord> UserCashRecord { get; set; }
|
|
public virtual DbSet<UserCashRecord> UserCashRecord { get; set; }
|
|
|
|
|
+ public virtual DbSet<UserCashRecordForBusiness> UserCashRecordForBusiness { get; set; }
|
|
|
public virtual DbSet<UserCenterIconList> UserCenterIconList { get; set; }
|
|
public virtual DbSet<UserCenterIconList> UserCenterIconList { get; set; }
|
|
|
public virtual DbSet<UserCollection> UserCollection { get; set; }
|
|
public virtual DbSet<UserCollection> UserCollection { get; set; }
|
|
|
public virtual DbSet<UserData> UserData { get; set; }
|
|
public virtual DbSet<UserData> UserData { get; set; }
|
|
@@ -4193,6 +4197,10 @@ namespace MySystem.Models
|
|
|
|
|
|
|
|
entity.Property(e => e.Id).HasColumnType("int(11)");
|
|
entity.Property(e => e.Id).HasColumnType("int(11)");
|
|
|
|
|
|
|
|
|
|
+ entity.Property(e => e.CompPrize)
|
|
|
|
|
+ .HasColumnType("decimal(18,2)")
|
|
|
|
|
+ .HasComment("达标奖励");
|
|
|
|
|
+
|
|
|
entity.Property(e => e.CreateDate)
|
|
entity.Property(e => e.CreateDate)
|
|
|
.HasColumnType("datetime")
|
|
.HasColumnType("datetime")
|
|
|
.HasComment("创建时间");
|
|
.HasComment("创建时间");
|
|
@@ -4207,9 +4215,24 @@ namespace MySystem.Models
|
|
|
.HasColumnType("int(11)")
|
|
.HasColumnType("int(11)")
|
|
|
.HasComment("直推达标人数");
|
|
.HasComment("直推达标人数");
|
|
|
|
|
|
|
|
|
|
+ entity.Property(e => e.IsComp)
|
|
|
|
|
+ .HasColumnType("bit(1)")
|
|
|
|
|
+ .HasDefaultValueSql("b'0'")
|
|
|
|
|
+ .HasComment("是否达标");
|
|
|
|
|
+
|
|
|
entity.Property(e => e.NotDirectCount)
|
|
entity.Property(e => e.NotDirectCount)
|
|
|
.HasColumnType("int(11)")
|
|
.HasColumnType("int(11)")
|
|
|
- .HasComment("简推达标人数");
|
|
|
|
|
|
|
+ .HasComment("间推达标人数");
|
|
|
|
|
+
|
|
|
|
|
+ entity.Property(e => e.ParentNav)
|
|
|
|
|
+ .HasColumnType("varchar(1000)")
|
|
|
|
|
+ .HasComment("上级创客集合")
|
|
|
|
|
+ .HasCharSet("utf8")
|
|
|
|
|
+ .HasCollation("utf8_general_ci");
|
|
|
|
|
+
|
|
|
|
|
+ entity.Property(e => e.ParentUserId)
|
|
|
|
|
+ .HasColumnType("int(11)")
|
|
|
|
|
+ .HasComment("上级创客");
|
|
|
|
|
|
|
|
entity.Property(e => e.QueryCount)
|
|
entity.Property(e => e.QueryCount)
|
|
|
.HasColumnType("int(11)")
|
|
.HasColumnType("int(11)")
|
|
@@ -4239,7 +4262,130 @@ namespace MySystem.Models
|
|
|
.HasComment("排序序号");
|
|
.HasComment("排序序号");
|
|
|
|
|
|
|
|
entity.Property(e => e.StatMonth)
|
|
entity.Property(e => e.StatMonth)
|
|
|
- .HasColumnType("varchar(6)")
|
|
|
|
|
|
|
+ .HasColumnType("varchar(20)")
|
|
|
|
|
+ .HasComment("统计月份")
|
|
|
|
|
+ .HasCharSet("utf8")
|
|
|
|
|
+ .HasCollation("utf8_general_ci");
|
|
|
|
|
+
|
|
|
|
|
+ entity.Property(e => e.Status)
|
|
|
|
|
+ .HasColumnType("int(11)")
|
|
|
|
|
+ .HasComment("状态");
|
|
|
|
|
+
|
|
|
|
|
+ entity.Property(e => e.UpdateDate)
|
|
|
|
|
+ .HasColumnType("datetime")
|
|
|
|
|
+ .HasComment("更新时间");
|
|
|
|
|
+
|
|
|
|
|
+ entity.Property(e => e.UpdateMan)
|
|
|
|
|
+ .HasColumnType("varchar(50)")
|
|
|
|
|
+ .HasComment("更新人")
|
|
|
|
|
+ .HasCharSet("utf8")
|
|
|
|
|
+ .HasCollation("utf8_general_ci");
|
|
|
|
|
+
|
|
|
|
|
+ entity.Property(e => e.UserId)
|
|
|
|
|
+ .HasColumnType("int(11)")
|
|
|
|
|
+ .HasComment("创客");
|
|
|
|
|
+
|
|
|
|
|
+ entity.Property(e => e.Version)
|
|
|
|
|
+ .HasColumnType("int(11)")
|
|
|
|
|
+ .HasComment("版本号");
|
|
|
|
|
+ });
|
|
|
|
|
+
|
|
|
|
|
+ modelBuilder.Entity<LeaderCompTmp>(entity =>
|
|
|
|
|
+ {
|
|
|
|
|
+ entity.HasComment("领导人达标奖临时存储");
|
|
|
|
|
+
|
|
|
|
|
+ entity.Property(e => e.Id)
|
|
|
|
|
+ .HasColumnType("int(11)")
|
|
|
|
|
+ .HasComment("用户Id");
|
|
|
|
|
+
|
|
|
|
|
+ entity.Property(e => e.EveryMonthData)
|
|
|
|
|
+ .HasColumnType("mediumtext")
|
|
|
|
|
+ .HasComment("每月达标数据")
|
|
|
|
|
+ .HasCharSet("utf8")
|
|
|
|
|
+ .HasCollation("utf8_general_ci");
|
|
|
|
|
+
|
|
|
|
|
+ entity.Property(e => e.ParentNav)
|
|
|
|
|
+ .HasColumnType("varchar(1000)")
|
|
|
|
|
+ .HasComment("上级创客集合")
|
|
|
|
|
+ .HasCharSet("utf8")
|
|
|
|
|
+ .HasCollation("utf8_general_ci");
|
|
|
|
|
+
|
|
|
|
|
+ entity.Property(e => e.ParentUserId)
|
|
|
|
|
+ .HasColumnType("int(11)")
|
|
|
|
|
+ .HasComment("上级创客");
|
|
|
|
|
+ });
|
|
|
|
|
+
|
|
|
|
|
+ modelBuilder.Entity<LeaderCompTradeStat>(entity =>
|
|
|
|
|
+ {
|
|
|
|
|
+ entity.HasComment("领导人达标奖交易额统计");
|
|
|
|
|
+
|
|
|
|
|
+ entity.Property(e => e.Id).HasColumnType("int(11)");
|
|
|
|
|
+
|
|
|
|
|
+ entity.Property(e => e.CheckSelfTradeAmount)
|
|
|
|
|
+ .HasColumnType("decimal(18,2)")
|
|
|
|
|
+ .HasComment("个人环比月交易额");
|
|
|
|
|
+
|
|
|
|
|
+ entity.Property(e => e.CheckTradeAmount)
|
|
|
|
|
+ .HasColumnType("decimal(18,2)")
|
|
|
|
|
+ .HasComment("环比月交易额");
|
|
|
|
|
+
|
|
|
|
|
+ entity.Property(e => e.CreateDate)
|
|
|
|
|
+ .HasColumnType("datetime")
|
|
|
|
|
+ .HasComment("创建时间");
|
|
|
|
|
+
|
|
|
|
|
+ entity.Property(e => e.CreateMan)
|
|
|
|
|
+ .HasColumnType("varchar(50)")
|
|
|
|
|
+ .HasComment("创建人")
|
|
|
|
|
+ .HasCharSet("utf8")
|
|
|
|
|
+ .HasCollation("utf8_general_ci");
|
|
|
|
|
+
|
|
|
|
|
+ entity.Property(e => e.ParentNav)
|
|
|
|
|
+ .HasColumnType("varchar(1000)")
|
|
|
|
|
+ .HasComment("上级创客集合")
|
|
|
|
|
+ .HasCharSet("utf8")
|
|
|
|
|
+ .HasCollation("utf8_general_ci");
|
|
|
|
|
+
|
|
|
|
|
+ entity.Property(e => e.ParentUserId)
|
|
|
|
|
+ .HasColumnType("int(11)")
|
|
|
|
|
+ .HasComment("上级创客");
|
|
|
|
|
+
|
|
|
|
|
+ entity.Property(e => e.QueryCount)
|
|
|
|
|
+ .HasColumnType("int(11)")
|
|
|
|
|
+ .HasComment("点击量");
|
|
|
|
|
+
|
|
|
|
|
+ entity.Property(e => e.ResultTradeAmount)
|
|
|
|
|
+ .HasColumnType("decimal(18,2)")
|
|
|
|
|
+ .HasComment("增量交易");
|
|
|
|
|
+
|
|
|
|
|
+ entity.Property(e => e.SelfResultTradeAmount)
|
|
|
|
|
+ .HasColumnType("decimal(18,2)")
|
|
|
|
|
+ .HasComment("个人增量交易");
|
|
|
|
|
+
|
|
|
|
|
+ entity.Property(e => e.SelfTradeAmount)
|
|
|
|
|
+ .HasColumnType("decimal(18,2)")
|
|
|
|
|
+ .HasComment("个人当月交易额");
|
|
|
|
|
+
|
|
|
|
|
+ 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)")
|
|
|
|
|
+ .HasComment("排序序号");
|
|
|
|
|
+
|
|
|
|
|
+ entity.Property(e => e.StatMonth)
|
|
|
|
|
+ .HasColumnType("varchar(20)")
|
|
|
.HasComment("统计月份")
|
|
.HasComment("统计月份")
|
|
|
.HasCharSet("utf8")
|
|
.HasCharSet("utf8")
|
|
|
.HasCollation("utf8_general_ci");
|
|
.HasCollation("utf8_general_ci");
|
|
@@ -4248,6 +4394,10 @@ namespace MySystem.Models
|
|
|
.HasColumnType("int(11)")
|
|
.HasColumnType("int(11)")
|
|
|
.HasComment("状态");
|
|
.HasComment("状态");
|
|
|
|
|
|
|
|
|
|
+ entity.Property(e => e.TradeAmount)
|
|
|
|
|
+ .HasColumnType("decimal(18,2)")
|
|
|
|
|
+ .HasComment("当月交易额");
|
|
|
|
|
+
|
|
|
entity.Property(e => e.UpdateDate)
|
|
entity.Property(e => e.UpdateDate)
|
|
|
.HasColumnType("datetime")
|
|
.HasColumnType("datetime")
|
|
|
.HasComment("更新时间");
|
|
.HasComment("更新时间");
|
|
@@ -6734,6 +6884,72 @@ namespace MySystem.Models
|
|
|
entity.Property(e => e.Version).HasColumnType("int(11)");
|
|
entity.Property(e => e.Version).HasColumnType("int(11)");
|
|
|
});
|
|
});
|
|
|
|
|
|
|
|
|
|
+ modelBuilder.Entity<MsgAlertUserList>(entity =>
|
|
|
|
|
+ {
|
|
|
|
|
+ entity.HasComment("系统弹窗消息创客关联表");
|
|
|
|
|
+
|
|
|
|
|
+ entity.Property(e => e.Id).HasColumnType("int(11)");
|
|
|
|
|
+
|
|
|
|
|
+ entity.Property(e => e.CreateDate)
|
|
|
|
|
+ .HasColumnType("datetime")
|
|
|
|
|
+ .HasComment("创建时间");
|
|
|
|
|
+
|
|
|
|
|
+ entity.Property(e => e.CreateMan)
|
|
|
|
|
+ .HasColumnType("varchar(50)")
|
|
|
|
|
+ .HasComment("创建人")
|
|
|
|
|
+ .HasCharSet("utf8")
|
|
|
|
|
+ .HasCollation("utf8_general_ci");
|
|
|
|
|
+
|
|
|
|
|
+ entity.Property(e => e.MsgId)
|
|
|
|
|
+ .HasColumnType("int(11)")
|
|
|
|
|
+ .HasComment("弹窗消息");
|
|
|
|
|
+
|
|
|
|
|
+ entity.Property(e => e.QueryCount)
|
|
|
|
|
+ .HasColumnType("int(11)")
|
|
|
|
|
+ .HasComment("点击量");
|
|
|
|
|
+
|
|
|
|
|
+ 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)")
|
|
|
|
|
+ .HasComment("排序序号");
|
|
|
|
|
+
|
|
|
|
|
+ entity.Property(e => e.Status)
|
|
|
|
|
+ .HasColumnType("int(11)")
|
|
|
|
|
+ .HasComment("状态");
|
|
|
|
|
+
|
|
|
|
|
+ entity.Property(e => e.UpdateDate)
|
|
|
|
|
+ .HasColumnType("datetime")
|
|
|
|
|
+ .HasComment("更新时间");
|
|
|
|
|
+
|
|
|
|
|
+ entity.Property(e => e.UpdateMan)
|
|
|
|
|
+ .HasColumnType("varchar(50)")
|
|
|
|
|
+ .HasComment("更新人")
|
|
|
|
|
+ .HasCharSet("utf8")
|
|
|
|
|
+ .HasCollation("utf8_general_ci");
|
|
|
|
|
+
|
|
|
|
|
+ entity.Property(e => e.UserId)
|
|
|
|
|
+ .HasColumnType("int(11)")
|
|
|
|
|
+ .HasComment("创客");
|
|
|
|
|
+
|
|
|
|
|
+ entity.Property(e => e.Version)
|
|
|
|
|
+ .HasColumnType("int(11)")
|
|
|
|
|
+ .HasComment("版本号");
|
|
|
|
|
+ });
|
|
|
|
|
+
|
|
|
modelBuilder.Entity<MsgBlackList>(entity =>
|
|
modelBuilder.Entity<MsgBlackList>(entity =>
|
|
|
{
|
|
{
|
|
|
entity.HasComment("消息黑名单");
|
|
entity.HasComment("消息黑名单");
|
|
@@ -16326,6 +16542,137 @@ namespace MySystem.Models
|
|
|
entity.Property(e => e.Version).HasColumnType("int(11)");
|
|
entity.Property(e => e.Version).HasColumnType("int(11)");
|
|
|
});
|
|
});
|
|
|
|
|
|
|
|
|
|
+ modelBuilder.Entity<UserCashRecordForBusiness>(entity =>
|
|
|
|
|
+ {
|
|
|
|
|
+ entity.HasComment("直营团队提现记录");
|
|
|
|
|
+
|
|
|
|
|
+ entity.HasIndex(e => new { e.UserId, e.TradeType, e.CashOrderNo })
|
|
|
|
|
+ .HasName("UserCashRecordIndex");
|
|
|
|
|
+
|
|
|
|
|
+ entity.Property(e => e.Id).HasColumnType("int(11)");
|
|
|
|
|
+
|
|
|
|
|
+ entity.Property(e => e.ActualTradeAmount).HasColumnType("decimal(18,2)");
|
|
|
|
|
+
|
|
|
|
|
+ entity.Property(e => e.CashOrderNo)
|
|
|
|
|
+ .HasColumnType("varchar(32)")
|
|
|
|
|
+ .HasCharSet("utf8")
|
|
|
|
|
+ .HasCollation("utf8_general_ci");
|
|
|
|
|
+
|
|
|
|
|
+ entity.Property(e => e.ChanelName)
|
|
|
|
|
+ .HasColumnType("varchar(32)")
|
|
|
|
|
+ .HasCharSet("utf8")
|
|
|
|
|
+ .HasCollation("utf8_general_ci");
|
|
|
|
|
+
|
|
|
|
|
+ entity.Property(e => e.ChannelCode)
|
|
|
|
|
+ .HasColumnType("varchar(16)")
|
|
|
|
|
+ .HasCharSet("utf8")
|
|
|
|
|
+ .HasCollation("utf8_general_ci");
|
|
|
|
|
+
|
|
|
|
|
+ entity.Property(e => e.CreateDate).HasColumnType("datetime");
|
|
|
|
|
+
|
|
|
|
|
+ entity.Property(e => e.CreateMan)
|
|
|
|
|
+ .HasColumnType("varchar(50)")
|
|
|
|
|
+ .HasCharSet("utf8")
|
|
|
|
|
+ .HasCollation("utf8_general_ci");
|
|
|
|
|
+
|
|
|
|
|
+ entity.Property(e => e.IdCardNo)
|
|
|
|
|
+ .HasColumnType("varchar(18)")
|
|
|
|
|
+ .HasCharSet("utf8")
|
|
|
|
|
+ .HasCollation("utf8_general_ci");
|
|
|
|
|
+
|
|
|
|
|
+ entity.Property(e => e.Ip)
|
|
|
|
|
+ .HasColumnType("varchar(15)")
|
|
|
|
|
+ .HasCharSet("utf8")
|
|
|
|
|
+ .HasCollation("utf8_general_ci");
|
|
|
|
|
+
|
|
|
|
|
+ entity.Property(e => e.ManageFee).HasColumnType("decimal(18,2)");
|
|
|
|
|
+
|
|
|
|
|
+ entity.Property(e => e.MediaSource)
|
|
|
|
|
+ .HasColumnType("varchar(16)")
|
|
|
|
|
+ .HasCharSet("utf8")
|
|
|
|
|
+ .HasCollation("utf8_general_ci");
|
|
|
|
|
+
|
|
|
|
|
+ entity.Property(e => e.PayTradeNo)
|
|
|
|
|
+ .HasColumnType("varchar(32)")
|
|
|
|
|
+ .HasCharSet("utf8")
|
|
|
|
|
+ .HasCollation("utf8_general_ci");
|
|
|
|
|
+
|
|
|
|
|
+ entity.Property(e => e.PaymentDate).HasColumnType("datetime");
|
|
|
|
|
+
|
|
|
|
|
+ entity.Property(e => e.QueryCount).HasColumnType("int(11)");
|
|
|
|
|
+
|
|
|
|
|
+ entity.Property(e => e.Remark)
|
|
|
|
|
+ .HasColumnType("varchar(128)")
|
|
|
|
|
+ .HasCharSet("utf8")
|
|
|
|
|
+ .HasCollation("utf8_general_ci");
|
|
|
|
|
+
|
|
|
|
|
+ entity.Property(e => e.ReqData)
|
|
|
|
|
+ .HasColumnType("varchar(2048)")
|
|
|
|
|
+ .HasCharSet("utf8")
|
|
|
|
|
+ .HasCollation("utf8_general_ci");
|
|
|
|
|
+
|
|
|
|
|
+ entity.Property(e => e.ResData)
|
|
|
|
|
+ .HasColumnType("varchar(2048)")
|
|
|
|
|
+ .HasCharSet("utf8")
|
|
|
|
|
+ .HasCollation("utf8_general_ci");
|
|
|
|
|
+
|
|
|
|
|
+ entity.Property(e => e.ReturnCode)
|
|
|
|
|
+ .HasColumnType("varchar(32)")
|
|
|
|
|
+ .HasCharSet("utf8")
|
|
|
|
|
+ .HasCollation("utf8_general_ci");
|
|
|
|
|
+
|
|
|
|
|
+ entity.Property(e => e.ReturnMsg)
|
|
|
|
|
+ .HasColumnType("varchar(128)")
|
|
|
|
|
+ .HasCharSet("utf8")
|
|
|
|
|
+ .HasCollation("utf8_general_ci");
|
|
|
|
|
+
|
|
|
|
|
+ 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.SettleBankCardNo)
|
|
|
|
|
+ .HasColumnType("varchar(32)")
|
|
|
|
|
+ .HasCharSet("utf8")
|
|
|
|
|
+ .HasCollation("utf8_general_ci");
|
|
|
|
|
+
|
|
|
|
|
+ entity.Property(e => e.SettleBankName)
|
|
|
|
|
+ .HasColumnType("varchar(64)")
|
|
|
|
|
+ .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.TradeAmount).HasColumnType("decimal(18,2)");
|
|
|
|
|
+
|
|
|
|
|
+ entity.Property(e => e.TradeFee).HasColumnType("decimal(18,2)");
|
|
|
|
|
+
|
|
|
|
|
+ entity.Property(e => e.TradeType).HasColumnType("int(11)");
|
|
|
|
|
+
|
|
|
|
|
+ entity.Property(e => e.UpdateDate).HasColumnType("datetime");
|
|
|
|
|
+
|
|
|
|
|
+ entity.Property(e => e.UpdateMan)
|
|
|
|
|
+ .HasColumnType("varchar(50)")
|
|
|
|
|
+ .HasCharSet("utf8")
|
|
|
|
|
+ .HasCollation("utf8_general_ci");
|
|
|
|
|
+
|
|
|
|
|
+ entity.Property(e => e.UserId).HasColumnType("int(11)");
|
|
|
|
|
+
|
|
|
|
|
+ entity.Property(e => e.Version).HasColumnType("int(11)");
|
|
|
|
|
+ });
|
|
|
|
|
+
|
|
|
modelBuilder.Entity<UserCenterIconList>(entity =>
|
|
modelBuilder.Entity<UserCenterIconList>(entity =>
|
|
|
{
|
|
{
|
|
|
entity.HasComment("个人中心常用工具");
|
|
entity.HasComment("个人中心常用工具");
|