using System; using System.Collections.Generic; using Jd.Api.Response; using Jd.Api.Util; namespace Jd.Api.Request { public class PaipaiSopOrderJsfServiceCreateOrderRequest : JdRequestBase { public Nullable orderId {get; set;} public Nullable orderType {get; set;} public Nullable createVia {get; set;} public string josOpenId {get; set;} public Nullable ppUin {get; set;} public Nullable orderAmount {get; set;} public Nullable discountAmount {get; set;} public Nullable shippingAmount {get; set;} public Nullable payAmount {get; set;} public string shippingName {get; set;} public string shippingPhone {get; set;} public string shippingAddress {get; set;} public Nullable payAccountType {get; set;} public string payAccount {get; set;} public Nullable orderCreateDt {get; set;} public string userId {get; set;} public string sopOrderProductReqListJson {get; set;} public Nullable realAmount {get; set;} public override string ApiName { get{return "jingdong.paipai.sopOrderJsfService.createOrder";} } protected override void PrepareParam(IDictionary parameters) { parameters.Add("orderId", this. orderId ); parameters.Add("orderType", this. orderType ); parameters.Add("createVia", this. createVia ); parameters.Add("josOpenId", this. josOpenId ); parameters.Add("ppUin", this. ppUin ); parameters.Add("orderAmount", this. orderAmount ); parameters.Add("discountAmount", this. discountAmount ); parameters.Add("shippingAmount", this. shippingAmount ); parameters.Add("payAmount", this. payAmount ); parameters.Add("shippingName", this. shippingName ); parameters.Add("shippingPhone", this. shippingPhone ); parameters.Add("shippingAddress", this. shippingAddress ); parameters.Add("payAccountType", this. payAccountType ); parameters.Add("payAccount", this. payAccount ); parameters.Add("orderCreateDt", this. orderCreateDt ); parameters.Add("userId", this. userId ); parameters.Add("sopOrderProductReqListJson", this. sopOrderProductReqListJson ); parameters.Add("realAmount", this. realAmount ); } } }