You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
61 lines
2.0 KiB
C#
61 lines
2.0 KiB
C#
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
|
|
{
|
|
/// <summary>
|
|
/// 舱位变更比对记录表
|
|
/// </summary>
|
|
[SqlSugar.SugarTable("op_sea_booking_slot_compare", "舱位变更比对记录表")]
|
|
public class BookingSlotCompare : BaseModel<long>
|
|
{
|
|
/// <summary>
|
|
/// 舱位主键
|
|
/// </summary>
|
|
[SqlSugar.SugarColumn(ColumnDescription = "舱位主键", IsNullable = false)]
|
|
public long SlotId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 打印时间
|
|
/// </summary>
|
|
[SqlSugar.SugarColumn(ColumnDescription = "打印时间", IsNullable = true)]
|
|
public Nullable<DateTime> PrintDate { get; set; }
|
|
|
|
/// <summary>
|
|
/// 比对类型 BC_MODIFY-BC变更比对
|
|
/// </summary>
|
|
[SqlSugar.SugarColumn(ColumnDescription = "比对类型 BC_MODIFY-BC变更比对", IsNullable = true)]
|
|
public string CompareType { get; set; }
|
|
|
|
/// <summary>
|
|
/// 比对结果JSON
|
|
/// </summary>
|
|
[SqlSugar.SugarColumn(ColumnDataType = "text", ColumnDescription = "比对结果JSON", IsNullable = true)]
|
|
public string CompareRlt { get; set; }
|
|
|
|
/// <summary>
|
|
/// 比对差异项数
|
|
/// </summary>
|
|
[SqlSugar.SugarColumn(ColumnDescription = "比对差异项数", IsNullable = true)]
|
|
public Nullable<int> CompareDiffNum { get; set; }
|
|
|
|
/// <summary>
|
|
/// 比对批次号
|
|
/// </summary>
|
|
[SqlSugar.SugarColumn(ColumnDescription = "比对批次号", IsNullable = true)]
|
|
public string CompareBatchNo { get; set; }
|
|
|
|
/// <summary>
|
|
/// 任务BC主键
|
|
/// </summary>
|
|
[SqlSugar.SugarColumn(ColumnDescription = "任务BC主键", IsNullable = true)]
|
|
public string BCTaskId { get; set; }
|
|
}
|
|
}
|