using FreeSql.DataAnnotations; namespace SBF.Model.Db { [Table(Name = "aggregationjdpopularizeadgroupdaily", DisableSyncStructure = true)] public partial class AggregationJDPopularizeAdGroupDaily { [Column(DbType = "bigint", IsPrimary = true)] public long Id { get; set; } /// /// 单元Id /// [Column(DbType = "bigint")] public long? AdGroupId { get; set; } public string AdGroupName { get; set; } /// /// 计划Id /// [Column(DbType = "bigint")] public long? CampaignId { 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; } } }