using FreeSql.DataAnnotations;
namespace SBF.Model.Db
{
[Table(Name = "aggregationjdpopularizespudaily", DisableSyncStructure = true)]
public partial class AggregationJDPopularizeSpuDaily
{
[Column(DbType = "bigint", IsPrimary = true)]
public long Id { 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; }
///
/// spu
///
[Column(StringLength = 50)]
public string ProductId { get; set; }
///
/// 产品维度GOI
///
[Column(DbType = "decimal(18,2)")]
public decimal? ProductLevelGOI { get; set; }
///
/// 产品维度毛利
///
[Column(DbType = "decimal(18,2)")]
public decimal? ProductLevelProfit { get; set; }
[Column(DbType = "bigint")]
public long? ShopId { get; set; }
///
/// 商品营业额(SKU实收之和)
///
[Column(DbType = "decimal(18,2)")]
public decimal? ActualAmount { get; set; } = 0.00M;
}
}