using System; using System.Collections.Generic; using Jd.Api.Response; using Jd.Api.Util; namespace Jd.Api.Request { public class DentistryPushGoodsStoreInfoRequest : JdRequestBase { public string goodsId {get; set;} public Nullable channelType {get; set;} public Nullable status {get; set;} public string storeId {get; set;} public override string ApiName { get{return "jingdong.dentistry.pushGoodsStoreInfo";} } protected override void PrepareParam(IDictionary parameters) { parameters.Add("goodsId", this. goodsId ); parameters.Add("channelType", this. channelType ); parameters.Add("status", this. status ); parameters.Add("storeId", this. storeId ); } } }