using System; using System.Collections.Generic; using Jd.Api.Response; using Jd.Api.Util; namespace Jd.Api.Request { public class CrmGatewayDownclientJdMappingLevelRequest : JdRequestBase { public string appId {get; set;} public Nullable customerLevel {get; set;} public string openId {get; set;} public string appKey {get; set;} public string xId {get; set;} public override string ApiName { get{return "jingdong.crm.gateway.downclient.jdMappingLevel";} } protected override void PrepareParam(IDictionary parameters) { parameters.Add("appId", this. appId ); parameters.Add("customerLevel", this. customerLevel ); parameters.Add("openId", this. openId ); parameters.Add("appKey", this. appKey ); parameters.Add("xId", this. xId ); } } }