步步为盈
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.

109 lines
5.2 KiB

using System;
using System.Collections.Generic;
using Jd.Api.Response;
using Jd.Api.Util;
namespace Jd.Api.Request
{
public class CrmGatewayDownclientJdSyncRequest : JdRequestBase<CrmGatewayDownclientJdSyncResponse>
{
public string
birthday
{get; set;}
public Nullable<int>
gender
{get; set;}
public string
city
{get; set;}
public string
cardNo
{get; set;}
public string
version
{get; set;}
public string
phoneNo
{get; set;}
public Nullable<int>
customerLevel
{get; set;}
public string
extend
{get; set;}
public string
province
{get; set;}
public string
street
{get; set;}
public string
appId
{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.jdSync";}
}
protected override void PrepareParam(IDictionary<String, Object> parameters)
{
parameters.Add("birthday", this. birthday
);
parameters.Add("gender", this. gender
);
parameters.Add("city", this. city
);
parameters.Add("cardNo", this. cardNo
);
parameters.Add("version", this. version
);
parameters.Add("phoneNo", this. phoneNo
);
parameters.Add("customerLevel", this. customerLevel
);
parameters.Add("extend", this. extend
);
parameters.Add("province", this. province
);
parameters.Add("street", this. street
);
parameters.Add("appId", this. appId
);
parameters.Add("openId", this. openId
);
parameters.Add("appKey", this. appKey
);
parameters.Add("xId", this. xId
);
}
}
}