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.

73 lines
2.4 KiB
C#

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

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.TaskPlat.Entity
{
/// <summary>
/// 格式单比对反馈记录表
/// </summary>
[SugarTable("draft_compare_feedback_record", "格式单比对反馈记录表")]
public class DraftCompareFeedBackRecord : BaseModelV2<long>
{
/// <summary>
/// 订舱主键,关联订舱主表ID
/// </summary>
[SugarColumn(ColumnDescription = "订舱主键,关联订舱主表ID", IsNullable = false)]
public long BOOKING_ID { get; set; }
/// <summary>
/// 主提单号
/// </summary>
[SugarColumn(ColumnDescription = "主提单号", IsNullable = false)]
public string MBLNO { get; set; }
/// <summary>
/// 比对主键
/// </summary>
[SugarColumn(ColumnDescription = "比对主键", IsNullable = false)]
public string TASK_COMPARE_ID { get; set; }
/// <summary>
/// 是否识别问题 1-时 0-否
/// </summary>
[SugarColumn(ColumnDescription = "是否识别问题 1-时 0-否", IsNullable = false)]
public bool IS_OCR_ERROR { get; set; }
/// <summary>
/// 是否订舱录入问题 1-是 0-否
/// </summary>
[SugarColumn(ColumnDescription = "是否订舱录入问题 1-是 0-否", IsNullable = false)]
public bool IS_EDIT_ERROR { get; set; }
/// <summary>
/// 是否代理录入问题 1-是 0-否
/// </summary>
[SugarColumn(ColumnDescription = "是否代理录入问题 1-是 0-否", IsNullable = false)]
public bool IS_AGENT_ERROR { get; set; }
/// <summary>
/// 备注
/// </summary>
[SugarColumn(ColumnDescription = "备注", IsNullable = false)]
public string NOTES { get; set; }
/// <summary>
/// 比对类型 DRAFT-格式单比对SHIPORDER-下货纸比对
/// </summary>
[SugarColumn(ColumnDescription = "比对类型", IsNullable = false)]
public string COMPARE_TYPE { get; set; }
/// <summary>
/// 比对完成时间
/// </summary>
[SugarColumn(ColumnDescription = "比对完成时间", IsNullable = false)]
public Nullable<DateTime> COMPARE_TIME { get; set; }
}
}