using Myshipping.Core.Entity; using SqlSugar; using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Myshipping.Application.Entity.DraftCompare { /// /// 格式单比对反馈记录表 /// [SugarTable("draft_compare_feedback_record", TableDescription = "格式单比对反馈记录表")] public class DraftCompareFeedBackRecord : DBEntityTenant { /// /// 订舱主键,关联订舱主表ID /// [SugarColumn(ColumnName = "BOOKING_ID")] [Description("订舱主键,关联订舱主表ID")] public long BOOKING_ID { get; set; } /// /// 主提单号 /// [SugarColumn(ColumnName = "MBLNO")] [Description("主提单号")] public string MBLNO { get; set; } /// /// 比对主键 /// [SugarColumn(ColumnName = "TASK_COMPARE_ID")] [Description("比对主键")] public string TASK_COMPARE_ID { get; set; } /// /// 是否识别问题 1-时 0-否 /// [SugarColumn(ColumnName = "IS_OCR_ERROR")] [Description("是否识别问题 1-时 0-否")] public bool IS_OCR_ERROR { get; set; } /// /// 是否订舱录入问题 1-是 0-否 /// [SugarColumn(ColumnName = "IS_EDIT_ERROR")] [Description("是否订舱录入问题 1-是 0-否")] public bool IS_EDIT_ERROR { get; set; } /// /// 是否代理录入问题 1-是 0-否 /// [SugarColumn(ColumnName = "IS_AGENT_ERROR")] [Description("是否代理录入问题 1-是 0-否")] public bool IS_AGENT_ERROR { get; set; } /// /// 备注 /// [SugarColumn(ColumnName = "NOTES")] [Description("备注")] public string NOTES { get; set; } /// /// 比对类型 DRAFT-格式单比对;SHIPORDER-下货纸比对 /// [SugarColumn(ColumnName = "COMPARE_TYPE")] [Description("比对类型")] public string COMPARE_TYPE { get; set; } /// /// 比对完成时间 /// [SugarColumn(ColumnName = "COMPARE_TIME")] [Description("比对完成时间")] public Nullable COMPARE_TIME { get; set; } } }