You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
60 lines
1.5 KiB
60 lines
1.5 KiB
2 years ago
|
using FreeSql.DataAnnotations;
|
||
|
|
||
|
namespace SiNan.Model.Db
|
||
|
{
|
||
|
|
||
|
[Table(Name = "aggregationjdpopularizespudaily", DisableSyncStructure = true)]
|
||
|
public partial class AggregationJDPopularizeSpuDaily
|
||
|
{
|
||
|
[Column(DbType = "bigint", IsPrimary = true)]
|
||
|
public long Id { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 推广花费
|
||
|
/// </summary>
|
||
|
[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; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 推广维度GOI
|
||
|
/// </summary>
|
||
|
[Column(DbType = "decimal(18,2)")]
|
||
|
public decimal? PopularizeLevelGOI { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 推广维度毛利
|
||
|
/// </summary>
|
||
|
[Column(DbType = "decimal(18,2)")]
|
||
|
public decimal? PopularizeLevelProfit { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// spu
|
||
|
/// </summary>
|
||
|
[Column(StringLength = 50)]
|
||
|
public string ProductId { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 产品维度GOI
|
||
|
/// </summary>
|
||
|
[Column(DbType = "decimal(18,2)")]
|
||
|
public decimal? ProductLevelGOI { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 产品维度毛利
|
||
|
/// </summary>
|
||
|
[Column(DbType = "decimal(18,2)")]
|
||
|
public decimal? ProductLevelProfit { get; set; }
|
||
|
|
||
|
[Column(DbType = "bigint")]
|
||
|
public long? ShopId { get; set; }
|
||
|
|
||
|
}
|
||
|
|
||
|
}
|