using FreeSql.DataAnnotations; using System; namespace BBWY.Server.Model.Db { [Table(Name = "promotiontaskskurecord", DisableSyncStructure = true)] public partial class PromotionTaskSkuRecord { [Column(IsPrimary = true)] public long Id { get; set; } [ Column(DbType = "datetime")] public DateTime? CreateTime { get; set; } public int ItemTotal { get; set; } [Column(StringLength = 50)] public string OrderId { get; set; } /// /// pjzs活动任务Id (非京东活动Id) /// public long PromotionTaskId { get; set; } public long ShopId { get; set; } [Column(StringLength = 50)] public string SkuId { get; set; } } }