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.
129 lines
8.1 KiB
129 lines
8.1 KiB
using System;
|
|
using System.Collections.Generic;
|
|
using Jd.Api.Response;
|
|
using Jd.Api.Util;
|
|
namespace Jd.Api.Request
|
|
{
|
|
public class EclpRtsIsvRtsCancelRequest : JdRequestBase<EclpRtsIsvRtsCancelResponse>
|
|
{
|
|
public string
|
|
eclpRtsNo
|
|
{get; set;}
|
|
|
|
public string
|
|
isvRtsNum
|
|
{get; set;}
|
|
|
|
public string
|
|
deptNo
|
|
{get; set;}
|
|
|
|
public string
|
|
deliveryMode
|
|
{get; set;}
|
|
|
|
public string
|
|
warehouseNo
|
|
{get; set;}
|
|
|
|
public string
|
|
supplierNo
|
|
{get; set;}
|
|
|
|
public string
|
|
receiver
|
|
{get; set;}
|
|
|
|
public string
|
|
receiverPhone
|
|
{get; set;}
|
|
|
|
public string
|
|
email
|
|
{get; set;}
|
|
|
|
public string
|
|
province
|
|
{get; set;}
|
|
|
|
public string
|
|
city
|
|
{get; set;}
|
|
|
|
public string
|
|
county
|
|
{get; set;}
|
|
|
|
public string
|
|
town
|
|
{get; set;}
|
|
|
|
public string
|
|
address
|
|
{get; set;}
|
|
|
|
public string
|
|
deptGoodsNo {get; set; }
|
|
public string
|
|
goodsName {get; set; }
|
|
public string
|
|
quantity {get; set; }
|
|
public string
|
|
realQuantity {get; set; }
|
|
public string
|
|
goodsStatus {get; set; }
|
|
public override string ApiName
|
|
{
|
|
get{return "jingdong.eclp.rts.isvRtsCancel";}
|
|
}
|
|
protected override void PrepareParam(IDictionary<String, Object> parameters)
|
|
{
|
|
parameters.Add("eclpRtsNo", this. eclpRtsNo
|
|
);
|
|
parameters.Add("isvRtsNum", this. isvRtsNum
|
|
);
|
|
parameters.Add("deptNo", this. deptNo
|
|
);
|
|
parameters.Add("deliveryMode", this. deliveryMode
|
|
);
|
|
parameters.Add("warehouseNo", this. warehouseNo
|
|
);
|
|
parameters.Add("supplierNo", this. supplierNo
|
|
);
|
|
parameters.Add("receiver", this. receiver
|
|
);
|
|
parameters.Add("receiverPhone", this. receiverPhone
|
|
);
|
|
parameters.Add("email", this. email
|
|
);
|
|
parameters.Add("province", this. province
|
|
);
|
|
parameters.Add("city", this. city
|
|
);
|
|
parameters.Add("county", this. county
|
|
);
|
|
parameters.Add("town", this. town
|
|
);
|
|
parameters.Add("address", this. address
|
|
);
|
|
parameters.Add("deptGoodsNo", this. deptGoodsNo
|
|
);
|
|
parameters.Add("goodsName", this. goodsName
|
|
);
|
|
parameters.Add("quantity", this. quantity
|
|
);
|
|
parameters.Add("realQuantity", this. realQuantity
|
|
);
|
|
parameters.Add("goodsStatus", this. goodsStatus
|
|
);
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|