using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Api.Framework.EntityTmp.KuaiShou { /// /// 订单数据 /// public class KS_OrderInfo { /// /// 订单集合 /// public List orderList { get; set; } /// /// 下次请求需要传的游标参数 /// public string pcursor { get; set; } } public class OrderList { /// /// 订单号 /// public long oid { get; set; } /// /// 订单状态 [0:全部订单] [30:已付款] [50:已收货] [60:已结算] [80:已失效] /// public int cpsOrderStatus { get; set; } /// /// 订单创建时间 /// public long orderCreateTime { get; set; } /// /// 支付时间 /// public long payTime { get; set; } /// /// 订单金额,单位分 /// public int orderTradeAmount { get; set; } /// /// 分销订单生成时间 /// public long createTime { get; set; } /// /// 分销订单更新时间 /// public long updateTime { get; set; } /// /// 结算成功时间 /// public long settlementSuccessTime { get; set; } /// /// 结算金额,单位分 /// public int settlementAmount { get; set; } /// /// 所属快手账号ID /// public long kwaimoneyUserId { get; set; } /// /// 快赚客商品列表 /// public List cpsKwaimoneyOrderProductView { get; set; } /// /// 商品列表 /// public List cpsOrderProductView { get; set; } } //public class CpsKwaimoneyOrderProductView public class CpsOrderProductView { /// /// 子订单号 /// public long oid { get; set; } /// /// 商品ID /// public long itemId { get; set; } /// /// 商品标题 /// public string itemTitle { get; set; } /// /// 商品头图 /// public string itemPicUrl { get; set; } /// /// 商品金额快照,单位分 /// public int itemPrice { get; set; } /// /// 规格描述 /// public string skuDesc { get; set; } /// /// 预估收入,单位分 /// public int estimatedIncome { get; set; } /// /// 佣金率,单位千分之一 /// public int commissionRate { get; set; } /// /// 推广位pid /// public string cpsPid { get; set; } /// /// 卖家id /// public long sellerId { get; set; } /// /// 卖家昵称 /// public string sellerNickname { get; set; } /// /// 购买数量 /// public int num { get; set; } /// /// 分销订单类型:3-达人直播间分销 /// public int cpsType { get; set; } /// /// 达人id /// public long distributorId { get; set; } /// /// 达人昵称 /// public string distributorNickname { get; set; } /// /// 备注(创建商品时的自定义参数) /// public string comments { get; set; } /// /// pid名称 /// public string pidName { get; set; } /// /// 实付金额(分) /// public int paymentFee { get; set; } } //public class CpsOrderProductView //{ // /// // /// // /// // public int oid { get; set; } // /// // /// // /// // public int itemId { get; set; } // /// // /// 罗马仕安卓数据线快充加长蓝牙耳机充电线器闪充micro usb // /// // public string itemTitle { get; set; } // /// // /// // /// // public int itemPrice { get; set; } // /// // /// // /// // public int estimatedIncome { get; set; } // /// // /// // /// // public int commissionRate { get; set; } // /// // /// // /// // public string cpsPid { get; set; } // /// // /// // /// // public int sellerId { get; set; } // /// // /// ROMOSS罗马仕旗舰店 // /// // public string sellerNickname { get; set; } // /// // /// // /// // public int num { get; set; } // /// // /// // /// // public int cpsType { get; set; } // /// // /// // /// // public int distributorId { get; set; } // /// // /// ROMOSS罗马仕旗舰店 // /// // public string distributorNickname { get; set; } // /// // /// // /// // public string comments { get; set; } // /// // /// // /// // public string pidName { get; set; } // /// // /// 高雅黑【3A快充单条装】,1m // /// // public string skuDesc { get; set; } // /// // /// // /// // public string itemPicUrl { get; set; } // /// // /// // /// // public int paymentFee { get; set; } //} }