步步为盈

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; }
}
}