using System; using System.Collections.Generic; using Jd.Api.Response; using Jd.Api.Util; namespace Jd.Api.Request { public class CrmGatewayDownclientJdSyncQueryRequest : JdRequestBase { public string appId {get; set;} public string phoneNo {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.jdSyncQuery";} } protected override void PrepareParam(IDictionary parameters) { parameters.Add("appId", this. appId ); parameters.Add("phoneNo", this. phoneNo ); parameters.Add("openId", this. openId ); parameters.Add("appKey", this. appKey ); parameters.Add("xId", this. xId ); } } }