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.

29 lines
743 B

2 years ago
using System.Collections.Generic;
namespace BBWYB.Server.Model.Dto
{
public class InputPurchaseSchemeRequest
{
/// <summary>
/// 采购方案分组Id,为空将新增分组
/// </summary>
public long? SchemeGroupId { get; set; }
/// <summary>
/// 慧眼标的Id
/// </summary>
public string HYBDId { get; set; }
/// <summary>
/// 慧眼方案Id
/// </summary>
public string HYSchemeId { get; set; }
public long ShopId { get; set; }
2 years ago
public string ProductId { get; set; }
public string SkuId { get; set; }
2 years ago
public IList<InputPurchaseSchemeProductRequest> PurchaseSchemeProductList { get; set; }
}
}