using System; using System.Collections.Generic; using Jd.Api.Response; using Jd.Api.Util; namespace Jd.Api.Request { public class KysPrintServiceWsRequest : JdRequestBase { public string noList {get; set;} public string noType {get; set;} public string deptId {get; set;} public string deptNo {get; set;} public override string ApiName { get{return "jingdong.kys.PrintServiceWs";} } protected override void PrepareParam(IDictionary parameters) { parameters.Add("noList", this. noList ); parameters.Add("noType", this. noType ); parameters.Add("deptId", this. deptId ); parameters.Add("deptNo", this. deptNo ); } } }