41 lines
1.0 KiB
41 lines
1.0 KiB
|
3 years ago
|
using FreeSql.DataAnnotations;
|
||
|
|
using System;
|
||
|
|
using System.Collections.Generic;
|
||
|
|
using System.ComponentModel.DataAnnotations;
|
||
|
|
using System.Linq;
|
||
|
|
using System.Text;
|
||
|
|
using System.Threading.Tasks;
|
||
|
|
using System.Xml.Linq;
|
||
|
|
|
||
|
|
namespace BBWYB.Server.Model.Db.PurchaseScheme
|
||
|
|
{
|
||
|
|
[Table(Name = "orderpurchaserelationinfo", DisableSyncStructure = true)]
|
||
|
|
public class OrderPurchaseRelationInfo
|
||
|
|
{
|
||
|
|
[Column( IsPrimary = true)]
|
||
|
|
public long Id { get; set; }
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// 采购单Id
|
||
|
|
/// </summary>
|
||
|
|
public string PurchaseOrderId { get; set; }
|
||
|
|
/// <summary>
|
||
|
|
/// 订单Id
|
||
|
|
/// </summary>
|
||
|
|
public string OrderId { get; set; }
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// 采购方案Id
|
||
|
|
/// </summary>
|
||
|
|
public string SchemeId { get; set; }
|
||
|
|
/// <summary>
|
||
|
|
/// 采购spu
|
||
|
|
/// </summary>
|
||
|
|
public string PurchaseProductId { get; set; }
|
||
|
|
/// <summary>
|
||
|
|
/// 采购sku
|
||
|
|
/// </summary>
|
||
|
|
public string PurchaseSkuId { get; set; }
|
||
|
|
}
|
||
|
|
}
|