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; }
///
/// 采购单Id
///
public string PurchaseOrderId { get; set; }
///
/// 订单Id
///
public string OrderId { get; set; }
///
/// 采购方案Id
///
public string SchemeId { get; set; }
///
/// 采购spu
///
public string PurchaseProductId { get; set; }
///
/// 采购sku
///
public string PurchaseSkuId { get; set; }
}
}