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.
75 lines
1.4 KiB
75 lines
1.4 KiB
using FreeSql.DataAnnotations;
|
|
using System;
|
|
|
|
namespace SiNan.Model.Db
|
|
{
|
|
|
|
/// <summary>
|
|
/// 京东订单推广归属关系表
|
|
/// </summary>
|
|
[Table(Name = "jdorderpopularizerelation", DisableSyncStructure = true)]
|
|
public partial class JDOrderPopularizeRelation {
|
|
|
|
[ Column(IsPrimary = true)]
|
|
public long Id { get; set; }
|
|
|
|
/// <summary>
|
|
/// 单元Id
|
|
/// </summary>
|
|
|
|
public long? AdGroupId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 创意Id
|
|
/// </summary>
|
|
|
|
public long? AdId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 业务线(快车:2 京速推:134217728)
|
|
/// </summary>
|
|
|
|
public int? BusinessType { get; set; }
|
|
|
|
/// <summary>
|
|
/// 计划Id
|
|
/// </summary>
|
|
|
|
public long? CampaignId { get; set; }
|
|
|
|
[Column(DbType = "datetime")]
|
|
public DateTime? CreateTime { get; set; }
|
|
|
|
[Column(DbType = "datetime")]
|
|
public DateTime? OrderTime { get; set; }
|
|
|
|
/// <summary>
|
|
/// 点击时间
|
|
/// </summary>
|
|
[Column(DbType = "datetime")]
|
|
public DateTime? CookieTime { get; set; }
|
|
|
|
/// <summary>
|
|
/// 订单Id
|
|
/// </summary>
|
|
[Column(StringLength = 50)]
|
|
public string OrderId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 下单Sku
|
|
/// </summary>
|
|
[Column(StringLength = 50)]
|
|
public string PlaceOrderSku { get; set; }
|
|
|
|
/// <summary>
|
|
/// 推广Sku
|
|
/// </summary>
|
|
[Column(StringLength = 50)]
|
|
public string PopularizeSku { get; set; }
|
|
|
|
|
|
public long? ShopId { get; set; }
|
|
|
|
}
|
|
|
|
}
|
|
|