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

44 lines
920 B

using System.Collections.Generic;
namespace QuanTan.SDK.Model
{
public class QuanTanPreviewOrderRequest
{
public string clientOrderId { get; set; }
public string userAccount { get; set; }
public IList<QuanTanPreviewOrderProduct> buyInfo { get; set; }
public QuanTanPreviewOrderReceipt receipt { get; set; }
}
public class QuanTanPreviewOrderProduct
{
public string productId { get; set; }
public string productSku { get; set; }
public int quantity { get; set; }
}
public class QuanTanPreviewOrderReceipt
{
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; }
}
}