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.
59 lines
1.3 KiB
59 lines
1.3 KiB
using FreeSql.DataAnnotations;
|
|
|
|
namespace BBWYB.Server.Model.Db
|
|
{
|
|
|
|
/// <summary>
|
|
/// 采购方案商品表
|
|
/// </summary>
|
|
[ Table(Name = "historypurchaseschemeproduct", DisableSyncStructure = true)]
|
|
public partial class HistoryPurchaseSchemeProduct {
|
|
|
|
/// <summary>
|
|
/// 历史流水Id
|
|
/// </summary>
|
|
[Column(DbType = "bigint", IsPrimary = true)]
|
|
public long HistoryId { get; set; }
|
|
|
|
[Column(DbType = "datetime")]
|
|
public DateTime? CreateTime { get; set; }
|
|
|
|
[Column(StringLength = 50)]
|
|
public string ProductId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 采购商品Id
|
|
/// </summary>
|
|
[Column(StringLength = 50)]
|
|
public string PurchaseProductId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 商家Id
|
|
/// </summary>
|
|
[Column(StringLength = 50)]
|
|
public string PurchaserId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 采购商品链接
|
|
/// </summary>
|
|
[Column(StringLength = 500)]
|
|
public string PurchaseUrl { get; set; }
|
|
|
|
[Column(StringLength = 50)]
|
|
public string SkuId { get; set; }
|
|
|
|
/// <summary>
|
|
/// Sku采购方案Id
|
|
/// </summary>
|
|
[Column(DbType = "bigint")]
|
|
public long? SkuPurchaseSchemeId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 采购方案版本
|
|
/// </summary>
|
|
[Column(DbType = "int")]
|
|
public int? Version { get; set; } = 1;
|
|
|
|
}
|
|
|
|
}
|
|
|