using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace SiteCore.taoObj { public class Api_trade_info { public BizOrder bizOrder { get; set; } public class BizOrder { public string receiverId { get; set; } /// /// 下单平台的订单id /// public string thirdOrderId { get; set; } /// /// 下单平台 /// public string orderPlatform { get; set; } /// /// 付款金额 /// public string payAmount { get; set; } /// /// 下单时间 /// public string orderTime { get; set; } /// /// 支付时间 /// public string payTime { get; set; } /// /// 下单平台卖家昵称 /// public string openSellerNick { get; set; } /// /// 下单平台买家昵称 /// public string openBuyerNick { get; set; } /// /// 省 /// public string province { get; set; } /// /// 市 /// public string city { get; set; } /// /// 收货地址 /// public string address { get; set; } /// /// 镇 /// public string receiverTown { get; set; } /// /// 区/县 /// public string area { get; set; } /// /// 下单平台-旗帜 /// public string thirdFlag { get; set; } /// /// 修改时间 /// public string modifyTime { get; set; } /// /// 完成时间 /// public string finishTime { get; set; } /// /// 发货时间 /// public string shippingTime { get; set; } /// /// 买家备注 /// public string buyerRemark { get; set; } /// /// 卖家备注 /// public string sellerRemark { get; set; } /// /// 订单状态 /// public string status { get; set; } /// /// 下单数量 /// public string num { get; set; } /// /// 订单退款状态 /// public string refundStatus { get; set; } /// /// 客服id /// public string erpCustomerServiceId { get; set; } /// /// 客户id /// public string openBuyerId { get; set; } /// /// 店铺编码 /// public string shopCode { get; set; } /// /// 未退款金额 /// public double unrefundedAmount { get; set; } /// /// 【订单来源】"10":第三方平台"15":私域电商"20":ERP"30":售前系统 /// public int orderFrom { get; set; } /// /// 【订单类型】"10":线上单"15":线下单"20":补差单"30":售后单 /// public int orderType { get; set; } /// ///确认时间 /// public string confirmTime { get; set; } /// /// 微信号 /// public string weChatId { get; set; } /// /// 手机号 /// public string phone { get; set; } /// /// 设计内容 /// public string designContent { get; set; } /// /// 修改地址 /// public string addressFileUrl { get; set; } /// /// 设计图片 /// public string designPics { get; set; } /// /// 二维码 /// public string weChatQrPics { get; set; } public List bizOrderItems { get; set; } public List bizOrderSplits { get; set; } public bool IsNew { get; set; } } public class TradeItemOrder { /// /// 下单平台的订单项id /// public string thirdOrderItemId { get; set; } /// /// 订单项退款状态 /// public string refundStatus { get; set; } /// /// 货品标题 /// public string title { get; set; } /// /// 原价 /// public string price { get; set; } /// /// 商品图片url /// public string picUrl { get; set; } /// /// 数量 /// public string num { get; set; } /// /// 应收金额合计 /// public string totalAmount { get; set; } /// /// 售价合计 /// public string totalSellPrice { get; set; } /// /// 下单平台的skuId /// public string thirdSkuId { get; set; } /// /// 货品规格 /// public string specification { get; set; } /// /// 下单平台的spuId /// public string thirdSpuId { get; set; } } public class bizOrderSplit { /// ///拆单号 /// public string splitNo { get; set; } /// /// 拆单金额 /// public string splitAmount { get; set; } /// /// 品类 /// public string productCategory { get; set; } /// /// 尺寸 /// public string size { get; set; } /// /// 材质 /// public string material { get; set; } /// /// 工艺 /// public string craft { get; set; } public string craftText { get; set; } /// /// 产品数量 /// public string productQuantity { get; set; } /// /// 款数 /// public string styleQuantity { get; set; } /// /// 是否现货 /// public bool isSpot { get; set; } /// /// 是否老客户下单 /// public bool isRepurchase { get; set; } /// /// 是否加急 /// public bool isUrgent { get; set; } /// /// 加急时间 /// public string UrgencyTime { get; set; } /// /// 出货时间 /// public string shippingTime { get; set; } /// /// 标记拿样单 0未标记 1拿样订单 2补差价订单 /// public string sampleMark { get; set; } /// /// 标记顺丰单 0未标记 1顺丰寄付 2顺丰到付 /// public string sfMark { get; set; } /// /// 标记微信单 0未标记 1微信单 2推购单 /// public string wechatMark { get; set; } /// /// 标记送小礼物 0未标记 1小礼物 /// public string sendGiftMark { get; set; } /// /// 系统备注 /// public string systemRemark { get; set; } /// /// 额外备注 /// public string otherRemark { get; set; } /// /// 是否预发货 /// public string isPreShipping { get; set; } /// /// 查货时间 /// public string checkOrderTime { get; set; } /// /// 状态 /// public string internalStatus { get; set; } /// /// 客服id /// public int erpCustomerServiceId { get; set; } /// /// 唯一标识 /// public string OrderSn { get; set; } /// /// 分类1 /// public string cate1 { get; set; } /// /// 分类2 /// public string cate2 { get; set; } /// /// 场景 /// public string scene { get; set; } /// /// 报价金额 /// public double offerAmount { get; set; } /// /// 款数 /// public int numbers { get; set; } /// /// 品类场景 /// public string typeScene { get; set; } /// /// 运营场景 /// public string opScene { get; set; } /// /// 多款类型 /// public string numberType { get; set; } /// /// 分类Id /// public string cate1Id { get; set; } /// /// 分类Id /// public string cate2Id { get; set; } /// /// 分类Id /// public string cate3Id { get; set; } /// /// 场景id /// public string sceneId { get; set; } /// /// 品类场景id /// public string typeSceneId { get; set; } /// /// 运营场景id /// public string opSceneId { get; set; } /// /// 材质id /// public string materialId { get; set; } /// /// 宽 /// public double width { get; set; } /// /// 高 /// public double height { get; set; } /// /// 长 /// public double length { get; set; } /// /// 推荐尺寸名称 /// public string recSize { get; set; } /// /// 尺寸单位 /// public string sizeUnit { get; set; } /// /// 数量单位 /// public string numberUnit { get; set; } /// /// 订单来源 /// public int orderFrom { get; set; } /// /// 【订单类型】"10":线上单"15":线下单"20":补差单"30":售后单 /// public int orderType { get; set; } /// /// spuid /// public string spuId { get; set; } /// /// 数量 /// public int quantity { get; set; } /// /// 折扣金额 /// public double discountAmount { get; set; } /// /// 补差金额 /// public double compensateAmount { get; set; } /// /// 补差拆单识别号 /// public string compensateSplitOrderUniqueNo { get; set; } /// /// 补差id /// public string ptid { get; set; } /// /// 拆单号 /// public string splitInfoNo { get; set; } /// /// 付款凭证文件 /// public string paymentFile { get; set; } public string parentSplitNo { get; set; } /// /// 是否老客户 /// public int isOldCustomer { get; set; } /// /// 是否比上次买的多 /// public int isOldCustomerMore { get; set; } /// /// 1改稿2定稿3查货 /// public int memoOpt { get; set; } /// /// uuid /// public string uuid { get; set; } /// /// 是否小礼物 /// public int isGift { get; set; } /// /// 老订单 /// public string oldOrderSn { get; set; } /// /// 是否电子稿 /// public int isDianziOrder { get; set; } } } }