This commit is contained in:
2025-07-08 20:10:02 +08:00
parent 2c7dc97d5f
commit a9193e1f3f
10 changed files with 151 additions and 61 deletions

View File

@@ -1,4 +1,5 @@
using System;
using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
@@ -94,6 +95,10 @@ namespace MyCode.Project.Infrastructure.JackYun
public class TradesItem
{
/// <summary>
/// 销售单状态 6000发货在途9090已完成
/// </summary>
public int tradeStatus { get; set; }
/// <summary>
///
/// </summary>
@@ -158,10 +163,7 @@ namespace MyCode.Project.Infrastructure.JackYun
///
/// </summary>
public string warehouseId { get; set; }
/// <summary>
///
/// </summary>
public int id { get; set; }
/// <summary>
///
/// </summary>
@@ -179,9 +181,24 @@ namespace MyCode.Project.Infrastructure.JackYun
/// </summary>
public List<GoodsDetailItem> goodsDetail { get; set; }
/// <summary>
///
/// 系统编码
/// </summary>
public string tradeId { get; set; }
/// <summary>
/// Desc:支付时间
/// Default:
/// Nullable:True
/// </summary>
public DateTime? payTime { get; set; }
/// <summary>
/// Desc:发货时间
/// Default:
/// Nullable:True
/// </summary>
public DateTime? consignTime { get; set; }
}
public class TradeFullinfogetData