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.
127 lines
8.6 KiB
127 lines
8.6 KiB
using System;
|
|
using System.Collections.Generic;
|
|
using Jd.Api.Response;
|
|
using Jd.Api.Util;
|
|
namespace Jd.Api.Request
|
|
{
|
|
public class CreateEntityStoreRequest : JdRequestBase<CreateEntityStoreResponse>
|
|
{
|
|
public string
|
|
name
|
|
{get; set;}
|
|
|
|
public Nullable<long>
|
|
addCode
|
|
{get; set;}
|
|
|
|
public string
|
|
addName
|
|
{get; set;}
|
|
|
|
public string
|
|
coordinate
|
|
{get; set;}
|
|
|
|
public string
|
|
phone
|
|
{get; set;}
|
|
|
|
public string
|
|
item {get; set; }
|
|
public string
|
|
customerId
|
|
{get; set;}
|
|
|
|
public string
|
|
categoryName
|
|
{get; set;}
|
|
|
|
public string
|
|
extendJson
|
|
{get; set;}
|
|
|
|
public string
|
|
imageFile
|
|
{get; set;}
|
|
|
|
public Nullable<long>
|
|
addCode4
|
|
{get; set;}
|
|
|
|
public string
|
|
mobile
|
|
{get; set;}
|
|
|
|
public Nullable<long>
|
|
categoryId2
|
|
{get; set;}
|
|
|
|
public string
|
|
slogan
|
|
{get; set;}
|
|
|
|
public Nullable<long>
|
|
qualificationId {get; set; }
|
|
public string
|
|
startingTime {get; set; }
|
|
public string
|
|
endingTime {get; set; }
|
|
public string
|
|
imgUrl {get; set; }
|
|
public Nullable<bool>
|
|
isPermanent {get; set; }
|
|
public override string ApiName
|
|
{
|
|
get{return "jingdong.createEntityStore";}
|
|
}
|
|
protected override void PrepareParam(IDictionary<String, Object> parameters)
|
|
{
|
|
parameters.Add("name", this. name
|
|
);
|
|
parameters.Add("addCode", this. addCode
|
|
);
|
|
parameters.Add("addName", this. addName
|
|
);
|
|
parameters.Add("coordinate", this. coordinate
|
|
);
|
|
parameters.Add("phone", this. phone
|
|
);
|
|
parameters.Add("item", this. item
|
|
);
|
|
parameters.Add("customerId", this. customerId
|
|
);
|
|
parameters.Add("categoryName", this. categoryName
|
|
);
|
|
parameters.Add("extendJson", this. extendJson
|
|
);
|
|
parameters.Add("imageFile", this. imageFile
|
|
);
|
|
parameters.Add("addCode4", this. addCode4
|
|
);
|
|
parameters.Add("mobile", this. mobile
|
|
);
|
|
parameters.Add("categoryId2", this. categoryId2
|
|
);
|
|
parameters.Add("slogan", this. slogan
|
|
);
|
|
parameters.Add("qualificationId", this. qualificationId
|
|
);
|
|
parameters.Add("startingTime", this. startingTime
|
|
);
|
|
parameters.Add("endingTime", this. endingTime
|
|
);
|
|
parameters.Add("imgUrl", this. imgUrl
|
|
);
|
|
parameters.Add("isPermanent", this. isPermanent
|
|
);
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|