using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace DS.WMS.Core.TaskPlat.Dtos { /// /// 格式单反馈记录 /// public class TaskDraftCompareFeedBackDto { /// /// 订舱主键 /// public long bookingId { get; set; } /// /// 提单号 /// public string mblNo { get; set; } /// /// 比对主键 /// public string taskCompareId { get; set; } /// /// 是否识别问题 1-时 0-否 /// public bool isOCRError { get; set; } /// /// 是否订舱录入问题 1-是 0-否 /// public bool isEditError { get; set; } /// /// 是否代理录入问题 1-是 0-否 /// public bool isAgentError { get; set; } /// /// 备注 /// public string notes { get; set; } /// /// 比对类型 DRAFT-格式单比对;SHIPORDER-下货纸比对 /// public string compareType { get; set; } /// /// 比对完成时间 /// public Nullable compareTime { get; set; } } }