using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Myshipping.Application { /// /// 下货纸比对回写 /// public class ShippingOrderCompareCallBackInfo { /// /// 请求主键 /// public string reqBusiId { get; set; } /// /// 比对ID /// public string compareId { get; set; } /// /// 下货纸比对方式 MANUAL-手动 AUTO-自动 /// public string compareMode { get; set; } = "AUTO"; /// /// 比对结果代码 /// public string compareRltCode { get; set; } /// /// 比对结果名称 /// public string compareRltName { get; set; } /// /// 比对日期 /// public DateTime compareDate { get; set; } /// /// 比对详情 /// public List compareDetailList { get; set; } } }