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.
65 lines
2.0 KiB
C#
65 lines
2.0 KiB
C#
using DS.Module.Core;
|
|
using DS.Module.Core.Data;
|
|
using SqlSugar;
|
|
|
|
namespace DS.WMS.Core.TaskPlat.Entity
|
|
{
|
|
/// <summary>
|
|
/// 业务比对差异记录表
|
|
///</summary>
|
|
[SugarTable("business_compare_diff_record", "业务比对差异记录表")]
|
|
public class BusinessCompareDiffRecord : BaseModelV2<long>
|
|
{
|
|
|
|
/// <summary>
|
|
/// 业务主键
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "业务主键", IsNullable = true, Length = 64)]
|
|
public string? BUSI_ID { get; set; }
|
|
|
|
/// <summary>
|
|
/// 业务类型 SeaExport=海运出口订单
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "业务类型 SeaExport=海运出口订单", IsNullable = true, Length = 64)]
|
|
public string? BUSI_TYPE { get; set; }
|
|
|
|
/// <summary>
|
|
/// 任务主键
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "任务主键", IsNullable = false)]
|
|
public long TASK_ID { get; set; }
|
|
|
|
/// <summary>
|
|
/// 打印时间
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "打印时间", IsNullable = true)]
|
|
public DateTime? PRINT_DATE { get; set; }
|
|
|
|
/// <summary>
|
|
/// 比对类型 BC_MODIFY-BC变更比对
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "比对类型 BC_MODIFY-BC变更比对", IsNullable = true, Length = 20)]
|
|
public string? COMPARE_TYPE { get; set; }
|
|
|
|
/// <summary>
|
|
/// 比对结果JSON
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "比对结果JSON", IsNullable = true)]
|
|
public string? COMPARE_RLT { get; set; }
|
|
|
|
/// <summary>
|
|
/// 比对差异项数
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "比对差异项数", IsNullable = true)]
|
|
public int? COMPARE_DIFF_NUM { get; set; }
|
|
|
|
/// <summary>
|
|
/// 比对批次号
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "比对批次号", IsNullable = true, Length = 64)]
|
|
public string? COMPARE_BATCHNO { get; set; }
|
|
|
|
|
|
}
|
|
|
|
} |