using FreeSql.DataAnnotations; namespace BBWYB.Server.Model.Db { /// /// Sku历史采购商关系表 /// [Table(Name = "skuhistorypurchaserrelation", DisableSyncStructure = true)] public partial class SkuHistoryPurchaserRelation { [Column(DbType = "bigint", IsPrimary = true)] public long Id { get; set; } /// /// 创建时间 /// [Column(DbType = "datetime")] public DateTime? CreateTime { get; set; } /// /// 采购商Id /// [Column(StringLength = 50)] public string PurchaserId { get; set; } [Column(DbType = "bigint")] public long? ShopId { get; set; } /// /// 店铺Sku /// [Column(StringLength = 50)] public string SkuId { get; set; } } }