步步为盈
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.

134 lines
7.0 KiB

3 years ago
using System;
using System.Collections.Generic;
using Jd.Api.Response;
using Jd.Api.Util;
namespace Jd.Api.Request
{
public class PaipaiSopOrderJsfServiceCreateOrderRequest : JdRequestBase<PaipaiSopOrderJsfServiceCreateOrderResponse>
{
public Nullable<long>
orderId
{get; set;}
public Nullable<int>
orderType
{get; set;}
public Nullable<int>
createVia
{get; set;}
public string
josOpenId
{get; set;}
public Nullable<long>
ppUin
{get; set;}
public Nullable<long>
orderAmount
{get; set;}
public Nullable<long>
discountAmount
{get; set;}
public Nullable<long>
shippingAmount
{get; set;}
public Nullable<long>
payAmount
{get; set;}
public string
shippingName
{get; set;}
public string
shippingPhone
{get; set;}
public string
shippingAddress
{get; set;}
public Nullable<int>
payAccountType
{get; set;}
public string
payAccount
{get; set;}
public Nullable<DateTime>
orderCreateDt
{get; set;}
public string
userId
{get; set;}
public string
sopOrderProductReqListJson
{get; set;}
public Nullable<long>
realAmount
{get; set;}
public override string ApiName
{
get{return "jingdong.paipai.sopOrderJsfService.createOrder";}
}
protected override void PrepareParam(IDictionary<String, Object> 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
);
}
}
}