using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MyCode.Project.Infrastructure.JackYun
{
public class GoodsDetailItem
{
///
/// 商品明细id(唯一):商品明细的唯一标识。
///
public string SubTradeld { get; set; }
///
///
///
public string goodsNo { get; set; }
///
///
///
public string specId { get; set; }
///
///
///
public decimal shareOrderPlatDiscountFee { get; set; }
///
///
///
public string goodsId { get; set; }
///
/// 订单标价总金额
///
public decimal sellTotal { get; set; }
///
///
///
public int needProcessCount { get; set; }
///
///
///
public decimal shareOrderDiscountFee { get; set; }
///
///
///
public string subTradeId { get; set; }
///
///
///
public int goodsPlatDiscountFee { get; set; }
///
///
///
public int baseUnitSellCount { get; set; }
///
/// 数量
///
public int sellCount { get; set; }
///
///
///
public string outerId { get; set; }
///
///
///
public decimal isFit { get; set; }
///
///
///
public decimal taxFee { get; set; }
///
/// 实付金额
///
public decimal divideSellTotal { get; set; }
///
/// 条码,用这个匹配金蝶物料编码
///
public string barcode { get; set; }
///
///
///
public int apiType { get; set; }
///
///
///
public string tradeId { get; set; }
///
///
///
public string skuImgUrl { get; set; }
}
public class TradesItem
{
///
/// 销售单状态 6000:发货在途;9090:已完成
///
public int tradeStatus { get; set; }
///
///
///
public int couponFee { get; set; }
///
///
///
public int realFee { get; set; }
///
/// 店铺编码
///
public string shopCode { get; set; }
///
/// 发货单单号
///
public string orderNo { get; set; }
///
/// 订单编号
///
public string tradeNo { get; set; }
///
/// 是否删除(0:否;1:是)
///
public int isDelete { get; set; }
///
///
///
public string mainPostid { get; set; }
///
/// 组合装子件列表
///
public List tradeOrderAssemblyGoodsDtoList { get; set; }
///
/// 珠海市臻美服饰有限公司
///
public string companyName { get; set; }
///
/// 物流上传成功,退款成功
///
public string flagNames { get; set; }
///
/// 棉花树童装店
///
public string shopName { get; set; }
///
/// 欣悦电商发货仓
///
public string warehouseName { get; set; }
///
///
///
public string warehouseCode { get; set; }
///
/// 韵达快递
///
public string logisticName { get; set; }
///
///
///
public int tradeFrom { get; set; }
///
///
///
public string warehouseId { get; set; }
///
///
///
public string shopId { get; set; }
///
///
///
public string shopTypeCode { get; set; }
///
///
///
public int apiType { get; set; }
///
/// 货品详情
///
public List goodsDetail { get; set; }
///
/// 系统编码
///
public string tradeId { get; set; }
///
/// Desc:支付时间
/// Default:
/// Nullable:True
///
public DateTime? payTime { get; set; }
///
/// Desc:发货时间
/// Default:
/// Nullable:True
///
public DateTime? consignTime { get; set; }
}
public class TradeFullinfogetData
{
///
/// 总数结果(仅当hasTotal为1时返回,要求翻页过程中不取总数)
///
public int totalResults { get; set; }
///
/// 销售单
///
public List trades { get; set; }
///
/// 游标id。用于下次请求入参
///
public string scrollId { get; set; }
}
public class TradeFullinfogetResp
{
///
///
///
public string contextId { get; set; }
///
///
///
public TradeFullinfogetData data { get; set; }
///
///
///
public List desensitizationItem { get; set; }
///
///
///
public string handlerInfo { get; set; }
///
///
///
public string noPrivilegeItem { get; set; }
///
///
///
public string pageInfo { get; set; }
}
//public class TradeFullinfogetResp
//{
// ///
// ///
// ///
// public string code { get; set; }
// ///
// ///
// ///
// public string subCode { get; set; }
// ///
// ///
// ///
// public string msg { get; set; }
// ///
// ///
// ///
// public Result result { get; set; }
//}
}