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.
19 lines
556 B
19 lines
556 B
2 years ago
|
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; }
|
||
|
}
|
||
|
}
|