using FreeSql.DataAnnotations; namespace SiNan.Model.Db { [Table(Name = "aggregationjdpopularizecampaigndaily", DisableSyncStructure = true)] public partial class AggregationJDPopularizeCampaignDaily { [Column(DbType = "bigint", IsPrimary = true)] public long Id { get; set; } /// /// 业务线(快车:2 京速推:134217728) /// [Column(DbType = "int")] public int? BusinessType { get; set; } /// /// 计划Id /// [Column(DbType = "bigint")] public long? CampaignId { get; set; } public string CampaignName { get; set; } /// /// 推广花费 /// [Column(DbType = "decimal(18,2)")] public decimal? Cost { get; set; } [Column(DbType = "datetime")] public DateTime? CreateTime { get; set; } [Column(DbType = "datetime")] public DateTime? Date { get; set; } /// /// 推广维度GOI /// [Column(DbType = "decimal(18,2)")] public decimal? PopularizeLevelGOI { get; set; } /// /// 推广维度毛利 /// [Column(DbType = "decimal(18,2)")] public decimal? PopularizeLevelProfit { get; set; } [Column(DbType = "bigint")] public long? ShopId { get; set; } } }