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.
86 lines
4.1 KiB
86 lines
4.1 KiB
3 years ago
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using Jd.Api.Response;
|
||
|
using Jd.Api.Util;
|
||
|
namespace Jd.Api.Request
|
||
|
{
|
||
|
public class JcloudWmsMasterCarrierQueryRequest : JdRequestBase<JcloudWmsMasterCarrierQueryResponse>
|
||
|
{
|
||
|
public string
|
||
|
tenantId
|
||
|
{get; set;}
|
||
|
|
||
|
public string
|
||
|
carrierNo
|
||
|
{get; set;}
|
||
|
|
||
|
public string
|
||
|
carrierName
|
||
|
{get; set;}
|
||
|
|
||
|
public Nullable<int>
|
||
|
carrierType
|
||
|
{get; set;}
|
||
|
|
||
|
public string
|
||
|
englishName
|
||
|
{get; set;}
|
||
|
|
||
|
public string
|
||
|
address
|
||
|
{get; set;}
|
||
|
|
||
|
public string
|
||
|
tel
|
||
|
{get; set;}
|
||
|
|
||
|
public string
|
||
|
contact
|
||
|
{get; set;}
|
||
|
|
||
|
public string
|
||
|
postCode
|
||
|
{get; set;}
|
||
|
|
||
|
public Nullable<int>
|
||
|
useFlag
|
||
|
{get; set;}
|
||
|
|
||
|
public override string ApiName
|
||
|
{
|
||
|
get{return "jingdong.jcloud.wms.master.carrier.query";}
|
||
|
}
|
||
|
protected override void PrepareParam(IDictionary<String, Object> parameters)
|
||
|
{
|
||
|
parameters.Add("tenantId", this. tenantId
|
||
|
);
|
||
|
parameters.Add("carrierNo", this. carrierNo
|
||
|
);
|
||
|
parameters.Add("carrierName", this. carrierName
|
||
|
);
|
||
|
parameters.Add("carrierType", this. carrierType
|
||
|
);
|
||
|
parameters.Add("englishName", this. englishName
|
||
|
);
|
||
|
parameters.Add("address", this. address
|
||
|
);
|
||
|
parameters.Add("tel", this. tel
|
||
|
);
|
||
|
parameters.Add("contact", this. contact
|
||
|
);
|
||
|
parameters.Add("postCode", this. postCode
|
||
|
);
|
||
|
parameters.Add("useFlag", this. useFlag
|
||
|
);
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|