using System; using System.Collections.Generic; using Jd.Api.Response; using Jd.Api.Util; namespace Jd.Api.Request { public class EclpMasterUpdateShopRequest : JdRequestBase { public string shopNo {get; set;} public string spSourceNo {get; set;} public string spShopNo {get; set;} public string shopName {get; set;} public string contacts {get; set;} public string phone {get; set;} public string address {get; set;} public string email {get; set;} public string fax {get; set;} public string afterSaleContacts {get; set;} public string afterSaleAddress {get; set;} public string afterSalePhone {get; set;} public string bdOwnerNo {get; set;} public string reserve1 {get; set;} public string reserve2 {get; set;} public string reserve3 {get; set;} public string reserve4 {get; set;} public string reserve5 {get; set;} public string reserve6 {get; set;} public string reserve7 {get; set;} public string reserve8 {get; set;} public string reserve9 {get; set;} public string reserve10 {get; set;} public override string ApiName { get{return "jingdong.eclp.master.updateShop";} } protected override void PrepareParam(IDictionary parameters) { parameters.Add("shopNo", this. shopNo ); parameters.Add("spSourceNo", this. spSourceNo ); parameters.Add("spShopNo", this. spShopNo ); parameters.Add("shopName", this. shopName ); parameters.Add("contacts", this. contacts ); parameters.Add("phone", this. phone ); parameters.Add("address", this. address ); parameters.Add("email", this. email ); parameters.Add("fax", this. fax ); parameters.Add("afterSaleContacts", this. afterSaleContacts ); parameters.Add("afterSaleAddress", this. afterSaleAddress ); parameters.Add("afterSalePhone", this. afterSalePhone ); parameters.Add("bdOwnerNo", this. bdOwnerNo ); parameters.Add("reserve1", this. reserve1 ); parameters.Add("reserve2", this. reserve2 ); parameters.Add("reserve3", this. reserve3 ); parameters.Add("reserve4", this. reserve4 ); parameters.Add("reserve5", this. reserve5 ); parameters.Add("reserve6", this. reserve6 ); parameters.Add("reserve7", this. reserve7 ); parameters.Add("reserve8", this. reserve8 ); parameters.Add("reserve9", this. reserve9 ); parameters.Add("reserve10", this. reserve10 ); } } }