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.
111 lines
2.6 KiB
111 lines
2.6 KiB
1 year ago
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using System.Linq;
|
||
|
using System.Text;
|
||
|
using System.Threading.Tasks;
|
||
|
|
||
|
namespace BBWYB.Server.Model._1688
|
||
|
{
|
||
|
public class OrderParameter
|
||
|
{
|
||
|
public string Csrf_token { get; set; }
|
||
|
|
||
|
public string OrderUrl { get; set; }
|
||
|
|
||
|
public string Lvid { get; set; }
|
||
|
|
||
|
|
||
|
public List<OrderGroupParameter> OrderGroupParameterList { get; set; }
|
||
|
public string Address { get; set; }
|
||
|
public string TownCode { get; set; }
|
||
|
public string IpvId { get; set; }
|
||
|
}
|
||
|
|
||
|
|
||
|
public class OrderGroupParameter
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 优惠券id
|
||
|
/// </summary>
|
||
|
public string PromotionId { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 1使用优惠券 0不使用优惠券
|
||
|
/// </summary>
|
||
|
public int ChooseFreeFreight { get; set; }
|
||
|
|
||
|
public decimal SumCarriage { get; set; }
|
||
|
|
||
|
public decimal DiscountFee { get; set; }
|
||
|
public decimal TotalProductAmount { get; set; }
|
||
|
|
||
|
public decimal ActualPay { get; set; }
|
||
|
|
||
|
public int PayFee { get; set; }
|
||
|
|
||
|
public int ActualPayFee { get; set; }
|
||
|
public string Group { get; set; }
|
||
|
|
||
|
public string StepName { get; set; }
|
||
|
|
||
|
public string OrderOutId { get; set; }
|
||
|
|
||
|
public string MemberId { get; set; }
|
||
|
|
||
|
//sellerUserId
|
||
|
public string SellerUserId { get; set; }
|
||
|
|
||
|
|
||
|
////transportType
|
||
|
//public string TransportType { get; set; }
|
||
|
|
||
|
////tplCode
|
||
|
//public string TplCode { get; set; }
|
||
|
|
||
|
//belong
|
||
|
public string Belong { get; set; }
|
||
|
|
||
|
|
||
|
public List<OrderProductParameter> OrderProductParameterList { get; set; }
|
||
|
}
|
||
|
|
||
|
|
||
|
|
||
|
public class OrderProductParameter
|
||
|
{
|
||
|
public decimal DiscountFee { get; set; }
|
||
|
|
||
|
public decimal SumCarriage { get; set; }
|
||
|
public string ProductId { get; set; }
|
||
|
|
||
|
public string SkuId { get; set; }
|
||
|
|
||
|
public string SpectId { get; set; }
|
||
|
|
||
|
|
||
|
public string CargoKey { get; set; }
|
||
|
|
||
|
public decimal UnitPrice { get; set; }
|
||
|
|
||
|
public decimal ProductAmount { get; set; }
|
||
|
public int Quantity { get; set; }
|
||
|
public string FreightId { get; set; }
|
||
|
|
||
|
//outId
|
||
|
public string OutId { get; set; }
|
||
|
public string? OfferPriceRangeJson { get; set; }
|
||
|
|
||
|
|
||
|
/// <summary>
|
||
|
/// 优惠券
|
||
|
/// </summary>
|
||
|
public string Couple { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 1使用优惠券 0不使用优惠券
|
||
|
/// </summary>
|
||
|
public int ChooseFreeFreight { get; set; }
|
||
|
public string Ext { get; set; }
|
||
|
}
|
||
|
}
|