using FreeSql.DataAnnotations; namespace BBWYB.Server.Model.Db { /// /// 采购方案商品表 /// [Table(Name = "purchaseschemeproduct", DisableSyncStructure = true)] public partial class PurchaseSchemeProduct { /// /// 采购商品和采购方案的关系Id /// [Column(IsPrimary = true)] public long Id { get; set; } [Column(DbType = "datetime")] public DateTime? CreateTime { get; set; } [Column(StringLength = 50, IsNullable = false)] public string ProductId { get; set; } /// /// 采购商品Id /// [Column(StringLength = 50, IsNullable = false)] public string PurchaseProductId { get; set; } /// /// 采购商品链接 /// [Column(StringLength = 100)] public string PurchaseUrl { get; set; } [Column(StringLength = 50, IsNullable = false)] public string SkuId { get; set; } /// /// Sku采购方案Id /// public long SkuPurchaseSchemeId { get; set; } /// /// 采购商Id /// [Column(StringLength = 20)] public string PurchaserId { get; set; } } }