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

62 lines
2.9 KiB

3 years ago
using System;
using System.Collections.Generic;
using Jd.Api.Response;
using Jd.Api.Util;
namespace Jd.Api.Request
{
public class B2bGxptPurchaseOrderErpServiceDeliveryPurchaseOrderRequest : JdRequestBase<B2bGxptPurchaseOrderErpServiceDeliveryPurchaseOrderResponse>
{
public Nullable<int>
shipmentId
{get; set;}
public Nullable<long>
venderId
{get; set;}
public string
shipmentNo
{get; set;}
public Nullable<long>
erpOrderId
{get; set;}
public string
shipmentName
{get; set;}
public string
distributionMode
{get; set;}
public override string ApiName
{
get{return "jingdong.b2b.gxpt.purchaseOrderErpService.deliveryPurchaseOrder";}
}
protected override void PrepareParam(IDictionary<String, Object> parameters)
{
parameters.Add("shipmentId", this. shipmentId
);
parameters.Add("venderId", this. venderId
);
parameters.Add("shipmentNo", this. shipmentNo
);
parameters.Add("erpOrderId", this. erpOrderId
);
parameters.Add("shipmentName", this. shipmentName
);
parameters.Add("distributionMode", this. distributionMode
);
}
}
}