using FreeSql.DataAnnotations;
namespace SiNan.Model.Db
{
///
/// 京东推广SKU创意表
///
[Table(Name = "historyjdpopularizeadsku", DisableSyncStructure = true)]
public partial class HistoryJDPopularizeAdSku
{
[Column(DbType = "bigint", IsPrimary = true)]
public long Id { get; set; }
///
/// 单元Id
///
[Column(DbType = "bigint")]
public long? AdGroupId { get; set; }
///
/// 创意Id
///
[Column(DbType = "bigint")]
public long? AdId { get; set; }
///
/// 创意名称
///
[Column(StringLength = 100)]
public string AdName { get; set; }
///
/// 业务线(快车:2 京速推:134217728)
///
[Column(DbType = "int")]
public int? BusinessType { get; set; }
///
/// 计划Id
///
[Column(DbType = "bigint")]
public long? CampaignId { get; set; }
///
/// 点击数
///
[Column(Name = "clicks", DbType = "int")]
public int? Clicks { 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; }
///
/// 展现次数
///
[Column(Name = "impressions", DbType = "int")]
public int? Impressions { get; set; }
///
/// 账号归属
///
[Column(Name = "pin")]
public string Pin { get; set; }
[Column(StringLength = 50)]
public string ProductId { get; set; }
[Column(DbType = "bigint")]
public long? ShopId { get; set; }
[Column(StringLength = 50)]
public string Sku { get; set; }
///
/// 总加购人数
///
[Column(Name = "totalCartCnt", DbType = "int")]
public int? TotalCartCnt { get; set; }
///
/// 总订单数
///
[Column(Name = "totalOrderCnt", DbType = "int")]
public int? TotalOrderCnt { get; set; }
///
/// 总订单金额
///
[Column(Name = "totalOrderSum", DbType = "decimal(11,2)")]
public decimal? TotalOrderSum { get; set; }
///
/// 访客数
///
[Column(Name = "visitorCnt", DbType = "int")]
public int? VisitorCnt { get; set; }
}
}