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.
40 lines
1.0 KiB
40 lines
1.0 KiB
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; }
|
|
}
|
|
}
|
|
|