You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
50 lines
1.2 KiB
C#
50 lines
1.2 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Myshipping.Application
|
|
{
|
|
/// <summary>
|
|
/// 下货纸比对回写
|
|
/// </summary>
|
|
public class ShippingOrderCompareCallBackInfo
|
|
{
|
|
/// <summary>
|
|
/// 请求主键
|
|
/// </summary>
|
|
public string reqBusiId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 比对ID
|
|
/// </summary>
|
|
public string compareId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 下货纸比对方式 MANUAL-手动 AUTO-自动
|
|
/// </summary>
|
|
public string compareMode { get; set; } = "AUTO";
|
|
|
|
/// <summary>
|
|
/// 比对结果代码
|
|
/// </summary>
|
|
public string compareRltCode { get; set; }
|
|
|
|
/// <summary>
|
|
/// 比对结果名称
|
|
/// </summary>
|
|
public string compareRltName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 比对日期
|
|
/// </summary>
|
|
public DateTime compareDate { get; set; }
|
|
|
|
/// <summary>
|
|
/// 比对详情
|
|
/// </summary>
|
|
public List<CompareResultDetailInfo> compareDetailList { get; set; }
|
|
}
|
|
}
|