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.
68 lines
2.1 KiB
C#
68 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.Entity.DraftCompare
|
|
{
|
|
/// <summary>
|
|
/// 格式单比对反馈记录表
|
|
/// </summary>
|
|
[SugarTable("draft_compare_feedback_record", TableDescription = "格式单比对反馈记录表")]
|
|
public class DraftCompareFeedBackRecord : DBEntityTenant
|
|
{
|
|
/// <summary>
|
|
/// 订舱主键,关联订舱主表ID
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "BOOKING_ID")]
|
|
[Description("订舱主键,关联订舱主表ID")]
|
|
public long BOOKING_ID { get; set; }
|
|
|
|
/// <summary>
|
|
/// 主提单号
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "MBLNO")]
|
|
[Description("主提单号")]
|
|
public string MBLNO { get; set; }
|
|
|
|
/// <summary>
|
|
/// 比对主键
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "TASK_COMPARE_ID")]
|
|
[Description("比对主键")]
|
|
public string TASK_COMPARE_ID { get; set; }
|
|
|
|
/// <summary>
|
|
/// 是否识别问题 1-时 0-否
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "IS_OCR_ERROR")]
|
|
[Description("是否识别问题 1-时 0-否")]
|
|
public bool IS_OCR_ERROR { get; set; }
|
|
|
|
/// <summary>
|
|
/// 是否订舱录入问题 1-是 0-否
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "IS_EDIT_ERROR")]
|
|
[Description("是否订舱录入问题 1-是 0-否")]
|
|
public bool IS_EDIT_ERROR { get; set; }
|
|
|
|
/// <summary>
|
|
/// 是否代理录入问题 1-是 0-否
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "IS_AGENT_ERROR")]
|
|
[Description("是否代理录入问题 1-是 0-否")]
|
|
public bool IS_AGENT_ERROR { get; set; }
|
|
|
|
/// <summary>
|
|
/// 备注
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "NOTES")]
|
|
[Description("备注")]
|
|
public string NOTES { get; set; }
|
|
}
|
|
}
|