|
|
|
using FreeSql.DataAnnotations;
|
|
|
|
|
|
|
|
namespace BBWYB.Server.Model.Db
|
|
|
|
{
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 入库采购单关系表
|
|
|
|
/// </summary>
|
|
|
|
[Table(Name = "instorepurchaseorderrelationinfo", DisableSyncStructure = true)]
|
|
|
|
public partial class InStorePurchaseOrdeRrelationInfo
|
|
|
|
{
|
|
|
|
|
|
|
|
[Column(IsPrimary = true)]
|
|
|
|
public long Id { get; set; }
|
|
|
|
|
|
|
|
[Column(DbType = "datetime")]
|
|
|
|
public DateTime? CreateTime { get; set; }
|
|
|
|
|
|
|
|
[Column(StringLength = 100)]
|
|
|
|
public string InStorePurchaseOrderId { get; set; }
|
|
|
|
|
|
|
|
[Column(StringLength = 100)]
|
|
|
|
public string OrderId { get; set; }
|
|
|
|
|
|
|
|
[Column(StringLength = 100)]
|
|
|
|
public string PurchaseOrderId { get; set; }
|
|
|
|
|
|
|
|
public long? ShopId { get; set; }
|
|
|
|
|
|
|
|
[Column(StringLength = 100)]
|
|
|
|
public string WaybillNo { get; set; }
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|