using FreeSql.DataAnnotations;
namespace SBF.Model.Db
{
[Table(Name = "aggregationjdpopularizeadgroup", DisableSyncStructure = true)]
public partial class AggregationJDPopularizeAdGroup
{
///
/// 单元Id
///
[Column(DbType = "bigint", IsPrimary = true)]
public long Id { get; set; }
public string AdGroupName { get; set; }
///
/// 计划Id
///
[Column(DbType = "bigint")]
public long? CampaignId { get; set; }
[Column(DbType = "datetime")]
public DateTime? CreateTime { get; set; }
///
/// 数据日期
///
[Column(DbType = "datetime")]
public DateTime? Date { get; set; }
///
/// 近30天推广花费
///
[Column(DbType = "decimal(18,2)")]
public decimal? Recent30dCost { get; set; }
///
/// 近30天推广维度GOI
///
[Column(DbType = "decimal(18,2)")]
public decimal? Recent30dPopularizeLevelGOI { get; set; }
///
/// 近30天推广维度毛利
///
[Column(DbType = "decimal(18,2)")]
public decimal? Recent30dPopularizeLevelProfit { get; set; }
///
/// 近7天推广花费
///
[Column(DbType = "decimal(18,2)")]
public decimal? Recent7dCost { get; set; }
///
/// 近7天推广维度GOI
///
[Column(DbType = "decimal(18,2)")]
public decimal? Recent7dPopularizeLevelGOI { get; set; }
///
/// 近7天推广维度毛利
///
[Column(DbType = "decimal(18,2)")]
public decimal? Recent7dPopularizeLevelProfit { get; set; }
[Column(DbType = "bigint")]
public long? ShopId { get; set; }
[Column(DbType = "datetime")]
public DateTime? UpdateTime { get; set; }
///
/// 昨天推广花费
///
[Column(DbType = "decimal(18,2)")]
public decimal? YestodayCost { get; set; }
///
/// 昨天推广维度GOI
///
[Column(DbType = "decimal(18,2)")]
public decimal? YestodayPopularizeLevelGOI { get; set; }
///
/// 昨天推广维度毛利
///
[Column(DbType = "decimal(18,2)")]
public decimal? YestodayPopularizeLevelProfit { get; set; }
}
}