步步为盈
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.

16 lines
437 B

namespace BBWY.Server.Model.Dto.Response.PurchaseOrderV2
{
/// <summary>
/// 包含采购方案的Sku商品信息
/// </summary>
public class ProductSkuWithSchemeResponse : ProductSkuResponse
{
public long PurchaseSchemeId { get; set; }
public string PurchaserId { get; set; }
public string PurchaseName { get; set; }
public Enums.Platform PurchasePlatform { get; set; }
}
}