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.
BookingHeChuan/Myshipping.Application/Entity/BusinessCompareDiffRecord.cs

75 lines
2.1 KiB
C#

using Myshipping.Core.Entity;
using SqlSugar;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Myshipping.Application
{
/// <summary>
/// 业务比对差异记录表
/// </summary>
[SugarTable("business_compare_diff_record", TableDescription = "业务比对差异记录表")]
public class BusinessCompareDiffRecord : DBEntityTenant
{
/// <summary>
/// 业务主键
/// </summary>
[SugarColumn(ColumnName = "BUSI_ID")]
[Description("业务主键")]
public string BUSI_ID { get; set; }
/// <summary>
/// 业务类型
/// </summary>
[SugarColumn(ColumnName = "BUSI_TYPE")]
[Description("业务类型")]
public string BUSI_TYPE { get; set; }
/// <summary>
/// 任务主键
/// </summary>
[SugarColumn(ColumnName = "TASK_ID")]
[Description("任务主键")]
public string TASK_ID { get; set; }
/// <summary>
/// 打印时间
/// </summary>
[SugarColumn(ColumnName = "PRINT_DATE")]
[Description("打印时间")]
public Nullable<DateTime> PRINT_DATE { get; set; }
/// <summary>
/// 比对类型 BC_MODIFY-BC变更比对
/// </summary>
[SugarColumn(ColumnName = "COMPARE_TYPE")]
[Description("比对类型")]
public string COMPARE_TYPE { get; set; }
/// <summary>
/// 比对结果JSON
/// </summary>
[SugarColumn(ColumnName = "COMPARE_RLT")]
[Description("比对结果JSON")]
public string COMPARE_RLT { get; set; }
/// <summary>
/// 比对差异项数
/// </summary>
[SugarColumn(ColumnName = "COMPARE_DIFF_NUM")]
[Description("比对差异项数")]
public Nullable<int> COMPARE_DIFF_NUM { get; set; }
/// <summary>
/// 比对批次号
/// </summary>
[SugarColumn(ColumnName = "COMPARE_BATCHNO")]
[Description("比对批次号")]
public string COMPARE_BATCHNO { get; set; }
}
}