using System; using System.Collections.Generic; using Jd.Api.Response; using Jd.Api.Util; namespace Jd.Api.Request { public class JcloudWmsPruchaseorderCancelRequest : JdRequestBase { public string receiptNo {get; set;} public string billType {get; set;} public string warehouseNo {get; set;} public string tenantId {get; set;} public override string ApiName { get{return "jingdong.jcloud.wms.pruchaseorder.cancel";} } protected override void PrepareParam(IDictionary parameters) { parameters.Add("receiptNo", this. receiptNo ); parameters.Add("billType", this. billType ); parameters.Add("warehouseNo", this. warehouseNo ); parameters.Add("tenantId", this. tenantId ); } } }