using DS.Module.Core; using DS.Module.Core.Data; using SqlSugar; namespace DS.WMS.Core.TaskPlat.Entity { /// /// 业务比对差异记录表 /// [SugarTable("business_compare_diff_record", "业务比对差异记录表")] public class BusinessCompareDiffRecord : BaseModelV2 { /// /// 业务主键 /// [SugarColumn(ColumnDescription = "业务主键", IsNullable = true, Length = 64)] public string? BUSI_ID { get; set; } /// /// 业务类型 /// [SugarColumn(ColumnDescription = "业务类型", IsNullable = true, Length = 64)] public string? BUSI_TYPE { get; set; } /// /// 任务主键 /// [SugarColumn(ColumnDescription = "任务主键", IsNullable = false)] public long TASK_ID { get; set; } /// /// 打印时间 /// [SugarColumn(ColumnDescription = "打印时间", IsNullable = true)] public DateTime? PRINT_DATE { get; set; } /// /// 比对类型 BC_MODIFY-BC变更比对 /// [SugarColumn(ColumnDescription = "比对类型 BC_MODIFY-BC变更比对", IsNullable = true, Length = 20)] public string? COMPARE_TYPE { get; set; } /// /// 比对结果JSON /// [SugarColumn(ColumnDescription = "比对结果JSON", IsNullable = true)] public string? COMPARE_RLT { get; set; } /// /// 比对差异项数 /// [SugarColumn(ColumnDescription = "比对差异项数", IsNullable = true)] public int? COMPARE_DIFF_NUM { get; set; } /// /// 比对批次号 /// [SugarColumn(ColumnDescription = "比对批次号", IsNullable = true, Length = 64)] public string? COMPARE_BATCHNO { get; set; } } }