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.
18 lines
556 B
18 lines
556 B
namespace SDKAdapter.PurchasePlatform.Models
|
|
{
|
|
public class PP_PreviewOrderRequest : BasePlatformRequest
|
|
{
|
|
/// <summary>
|
|
/// 采购模式
|
|
/// </summary>
|
|
public AdapterEnums.PurchaseMode PurchaseMode { get; set; }
|
|
/// <summary>
|
|
/// 收货信息
|
|
/// </summary>
|
|
public PP_ConsigneeRequest Consignee { get; set; }
|
|
/// <summary>
|
|
/// 产品参数列表
|
|
/// </summary>
|
|
public IList<PP_OrderProductParamRequest> OrderProductParamList { get; set; }
|
|
}
|
|
}
|
|
|