#region << 版 本 注 释 >>
/*----------------------------------------------------------------
* 命名空间:WIDESEAWCS_Model.Models.TaskInfo
* 创建者:胡童庆
* 创建时间:2024/8/2 16:13:36
* 版本:V1.0.0
* 描述:
*
* ----------------------------------------------------------------
* 修改人:
* 修改时间:
* 版本:V1.0.1
* 修改说明:
*
*----------------------------------------------------------------*/
#endregion << 版 本 注 释 >>
using Magicodes.ExporterAndImporter.Core;
using SqlSugar;
using WIDESEAWCS_Core.DB.Models;
namespace WIDESEAWCS_Model.BasicInfo
{
[SugarTable(nameof(Dt_WMSErrorMessage), "WMS异常信息")]
public class Dt_WMSErrorMessage: BaseEntity
{
///
/// 主键
///
[ImporterHeader(Name = "主键")]
[ExporterHeader(DisplayName = "主键")]
[SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "主键")]
public int ID { get; set; }
///
/// 任务号
///
[ImporterHeader(Name = "任务号")]
[ExporterHeader(DisplayName = "任务号")]
[SugarColumn(IsNullable = false, ColumnDescription = "任务号")]
public int TaskNum { get; set; }
///
/// 托盘号
///
[ImporterHeader(Name = "托盘号")]
[ExporterHeader(DisplayName = "托盘号")]
[SugarColumn(IsNullable = false, Length = 50, ColumnDescription = "托盘号")]
public string PalletCode { get; set; }
///
/// 异常信息
///
[ImporterHeader(Name = "异常信息")]
[ExporterHeader(DisplayName = "异常信息")]
[SugarColumn(IsNullable = false, Length = 10, ColumnDescription = "异常信息")]
public string ErrorMessage { get; set; }
}
}