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.
97 lines
7.4 KiB
97 lines
7.4 KiB
using System;
|
|
using System.Collections.Generic;
|
|
using Jd.Api.Response;
|
|
using Jd.Api.Util;
|
|
namespace Jd.Api.Request
|
|
{
|
|
public class CrmMemberScanRequest : JdRequestBase<CrmMemberScanResponse>
|
|
{
|
|
public string
|
|
pin
|
|
{get; set;}
|
|
|
|
public string
|
|
grade
|
|
{get; set;}
|
|
|
|
public Nullable<DateTime>
|
|
minLastTradeTime
|
|
{get; set;}
|
|
|
|
public Nullable<DateTime>
|
|
maxLastTradeTime
|
|
{get; set;}
|
|
|
|
public Nullable<int>
|
|
minTradeCount
|
|
{get; set;}
|
|
|
|
public Nullable<int>
|
|
maxTradeCount
|
|
{get; set;}
|
|
|
|
public string
|
|
avgPrice
|
|
{get; set;}
|
|
|
|
public string
|
|
minTradeAmount
|
|
{get; set;}
|
|
|
|
public string
|
|
pageSize
|
|
{get; set;}
|
|
|
|
public string
|
|
scrollId
|
|
{get; set;}
|
|
|
|
public string
|
|
openIdBuyer
|
|
{get; set;}
|
|
|
|
public string
|
|
xidBuyer
|
|
{get; set;}
|
|
|
|
public override string ApiName
|
|
{
|
|
get{return "jingdong.crm.member.scan";}
|
|
}
|
|
protected override void PrepareParam(IDictionary<String, Object> parameters)
|
|
{
|
|
parameters.Add("pin", this. pin
|
|
);
|
|
parameters.Add("grade", this. grade
|
|
);
|
|
parameters.Add("min_last_trade_time", this. minLastTradeTime
|
|
);
|
|
parameters.Add("max_last_trade_time", this. maxLastTradeTime
|
|
);
|
|
parameters.Add("min_trade_count", this. minTradeCount
|
|
);
|
|
parameters.Add("max_trade_count", this. maxTradeCount
|
|
);
|
|
parameters.Add("avg_price", this. avgPrice
|
|
);
|
|
parameters.Add("min_trade_amount", this. minTradeAmount
|
|
);
|
|
parameters.Add("page_size", this. pageSize
|
|
);
|
|
parameters.Add("scroll_id", this. scrollId
|
|
);
|
|
parameters.Add("open_id_buyer", this. openIdBuyer
|
|
);
|
|
parameters.Add("xid_buyer", this. xidBuyer
|
|
);
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|