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.
131 lines
6.9 KiB
131 lines
6.9 KiB
using System;
|
|
using System.Collections.Generic;
|
|
using Jd.Api.Response;
|
|
using Jd.Api.Util;
|
|
namespace Jd.Api.Request
|
|
{
|
|
public class EclpMasterAddSupplierRequest : JdRequestBase<EclpMasterAddSupplierResponse>
|
|
{
|
|
public string
|
|
deptNo
|
|
{get; set;}
|
|
|
|
public string
|
|
isvSupplierNo
|
|
{get; set;}
|
|
|
|
public string
|
|
supplierName
|
|
{get; set;}
|
|
|
|
public string
|
|
contacts
|
|
{get; set;}
|
|
|
|
public string
|
|
phone
|
|
{get; set;}
|
|
|
|
public string
|
|
fax
|
|
{get; set;}
|
|
|
|
public string
|
|
email
|
|
{get; set;}
|
|
|
|
public string
|
|
province
|
|
{get; set;}
|
|
|
|
public string
|
|
city
|
|
{get; set;}
|
|
|
|
public string
|
|
county
|
|
{get; set;}
|
|
|
|
public string
|
|
town
|
|
{get; set;}
|
|
|
|
public string
|
|
address
|
|
{get; set;}
|
|
|
|
public string
|
|
ext1
|
|
{get; set;}
|
|
|
|
public string
|
|
ext2
|
|
{get; set;}
|
|
|
|
public string
|
|
ext3
|
|
{get; set;}
|
|
|
|
public string
|
|
ext4
|
|
{get; set;}
|
|
|
|
public string
|
|
ext5
|
|
{get; set;}
|
|
|
|
public string
|
|
pictureUrls {get; set; }
|
|
public override string ApiName
|
|
{
|
|
get{return "jingdong.eclp.master.addSupplier";}
|
|
}
|
|
protected override void PrepareParam(IDictionary<String, Object> parameters)
|
|
{
|
|
parameters.Add("deptNo", this. deptNo
|
|
);
|
|
parameters.Add("isvSupplierNo", this. isvSupplierNo
|
|
);
|
|
parameters.Add("supplierName", this. supplierName
|
|
);
|
|
parameters.Add("contacts", this. contacts
|
|
);
|
|
parameters.Add("phone", this. phone
|
|
);
|
|
parameters.Add("fax", this. fax
|
|
);
|
|
parameters.Add("email", this. email
|
|
);
|
|
parameters.Add("province", this. province
|
|
);
|
|
parameters.Add("city", this. city
|
|
);
|
|
parameters.Add("county", this. county
|
|
);
|
|
parameters.Add("town", this. town
|
|
);
|
|
parameters.Add("address", this. address
|
|
);
|
|
parameters.Add("ext1", this. ext1
|
|
);
|
|
parameters.Add("ext2", this. ext2
|
|
);
|
|
parameters.Add("ext3", this. ext3
|
|
);
|
|
parameters.Add("ext4", this. ext4
|
|
);
|
|
parameters.Add("ext5", this. ext5
|
|
);
|
|
parameters.Add("pictureUrls", this. pictureUrls
|
|
);
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|