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