using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace BBWYB.Client.Models { public class OrderParameter { public string Csrf_token { get; set; } public string OrderUrl { get; set; } public string Lvid { get; set; } public List OrderGroupParameterList { get; set; } public string Address { get; set; } public string TownCode { get; set; } public string IpvId { get; set; } } public class OrderGroupParameter { /// /// 优惠券id /// public string PromotionId { get; set; } /// /// 1使用优惠券 0不使用优惠券 /// 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 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; internal set; } //outId public string OutId { get; set; } public string? OfferPriceRangeJson { get; internal set; } /// /// 优惠券 /// public string Couple { get; set; } /// /// 1使用优惠券 0不使用优惠券 /// public int ChooseFreeFreight { get; set; } } }