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.Op.Entity
{
///
/// 舱位变更比对记录表
///
[SqlSugar.SugarTable("op_sea_booking_slot_compare", "舱位变更比对记录表")]
public class BookingSlotCompare : BaseModel
{
///
/// 舱位主键
///
[SqlSugar.SugarColumn(ColumnDescription = "舱位主键", IsNullable = false)]
public long SlotId { get; set; }
///
/// 打印时间
///
[SqlSugar.SugarColumn(ColumnDescription = "打印时间", IsNullable = true)]
public Nullable PrintDate { get; set; }
///
/// 比对类型 BC_MODIFY-BC变更比对
///
[SqlSugar.SugarColumn(ColumnDescription = "比对类型 BC_MODIFY-BC变更比对", IsNullable = true)]
public string CompareType { get; set; }
///
/// 比对结果JSON
///
[SqlSugar.SugarColumn(ColumnDataType = "text", ColumnDescription = "比对结果JSON", IsNullable = true)]
public string CompareRlt { get; set; }
///
/// 比对差异项数
///
[SqlSugar.SugarColumn(ColumnDescription = "比对差异项数", IsNullable = true)]
public Nullable CompareDiffNum { get; set; }
///
/// 比对批次号
///
[SqlSugar.SugarColumn(ColumnDescription = "比对批次号", IsNullable = true)]
public string CompareBatchNo { get; set; }
///
/// 任务BC主键
///
[SqlSugar.SugarColumn(ColumnDescription = "任务BC主键", IsNullable = true)]
public string BCTaskId { get; set; }
}
}