Files
YunTongJackYunTask/Reportapi/MyCode.Project.Domain/Message/Request/JackYun/OrderTradeFullInfoGetRequestBizData.cs
2025-07-10 15:31:54 +08:00

99 lines
3.0 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using MyCode.Project.Infrastructure.JackYun;
using System;
namespace MyCode.Project.Domain.Message.Request.JackYun
{
/// <summary>
/// 订单交易完整信息获取请求业务数据
/// </summary>
public class OrderTradeFullInfoGetRequestBizData : BaseRequestBizData
{
/// <summary>
/// 销售单号,多个用半角逗号分隔
/// </summary>
public string TradeNo { get; set; }
/// <summary>
/// 页码0为第1页
/// </summary>
public int PageIndex { get; set; }
/// <summary>
/// 最后修改时间(起始)
/// </summary>
public string StartModified { get; set; }
/// <summary>
/// 每页记录数默认50最大1000
/// </summary>
public int PageSize { get; set; }
/// <summary>
/// 最后修改时间(截止)
/// </summary>
public string EndModified { get; set; }
/// <summary>
/// 需要返回的字段列表,多个字段用半角逗号分隔
/// </summary>
public string Fields { get; set; }
/// <summary>
/// 默认返回首次调用时可以传1获取总记录数
/// </summary>
public int HasTotal { get; set; }
/// <summary>
/// 创建时间(起始)
/// </summary>
public string StartCreated { get; set; }
/// <summary>
/// 创建时间(截止)
/// </summary>
public string EndCreated { get; set; }
/// <summary>
/// 审核时间(起始)
/// </summary>
public string StartAuditTime { get; set; }
/// <summary>
/// 审核时间(截止)
/// </summary>
public string EndAuditTime { get; set; }
/// <summary>
/// 发货时间(起始)
/// </summary>
public string StartConsignTime { get; set; }
/// <summary>
/// 发货时间(截止)
/// </summary>
public string EndConsignTime { get; set; }
/// <summary>
/// 订单状态
/// </summary>
public string TradeStatus { get; set; }
/// <summary>
/// 订单类型 销售单类型1零售业务2代发货来自分销商3预售订单4周期性订购5代销售供货商发货6现款现货7售后发货8售后退货9批发业务B2B10试销业务11错漏调整12仅退款13销售返利14大B2B业务15物流买赔16销售对账差异 91自定义192自定义293自定义3...100自定义10
/// 只抓 1 零售业务7 售后发货8 售后退货
/// </summary>
public int TradeType { get; set; }
/// <summary>
/// 网店订单号
/// </summary>
public string SourceTradeNos { get; set; }
/// <summary>
/// 店铺ID数组
/// </summary>
public long[] ShopIds { get; set; }
}
}