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.
41 lines
927 B
41 lines
927 B
namespace QuanTan.SDK.Models.Buyer
|
|
{
|
|
public class QuanTan_Buyer_PreviewOrderRequest
|
|
{
|
|
public string clientOrderId { get; set; }
|
|
|
|
public string userAccount { get; set; }
|
|
|
|
public IList<QuanTan_Buyer_PreviewOrderProduct> buyInfo { get; set; }
|
|
|
|
public QuanTan_Buyer_PreviewOrderReceipt receipt { get; set; }
|
|
}
|
|
|
|
public class QuanTan_Buyer_PreviewOrderProduct
|
|
{
|
|
public string productId { get; set; }
|
|
|
|
public string productSku { get; set; }
|
|
|
|
public int quantity { get; set; }
|
|
}
|
|
|
|
public class QuanTan_Buyer_PreviewOrderReceipt
|
|
{
|
|
public string province { get; set; }
|
|
|
|
public string city { get; set; }
|
|
|
|
public string area { get; set; }
|
|
|
|
public string town { get; set; }
|
|
|
|
public string address { get; set; }
|
|
|
|
public string realName { get; set; }
|
|
|
|
public string phone { get; set; }
|
|
}
|
|
|
|
|
|
}
|
|
|