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.
86 lines
2.7 KiB
C#
86 lines
2.7 KiB
C#
using DS.Module.Core.Data;
|
|
using SqlSugar;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace DS.WMS.Core.Op.Entity
|
|
{
|
|
/// <summary>
|
|
/// 函电信息更改通知
|
|
/// </summary>
|
|
[SqlSugar.SugarTable("op_letter_change", " 函电信息更改通知")]
|
|
public class OpLetterChange : BaseOrgModel<long>
|
|
{
|
|
/// <summary>
|
|
/// LetterId
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "LetterId")]
|
|
public long LetterId { get; set; }
|
|
/// <summary>
|
|
/// 主提单号
|
|
/// </summary>
|
|
[SqlSugar.SugarColumn(ColumnDescription = "主提单号", IsNullable = false, Length = 30)]
|
|
public string MBLNO { get; set; }
|
|
|
|
/// <summary>
|
|
/// 卸货港
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "卸货港", Length = 60, IsNullable = true)]
|
|
public string DischargePort { get; set; }
|
|
|
|
/// <summary>
|
|
/// 船名航次
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "卸货港", Length = 100, IsNullable = true)]
|
|
public string VesselVoyNo { get; set; }
|
|
|
|
/// <summary>
|
|
/// 开船日期
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "开船日期", IsNullable = true)]
|
|
public DateTime? ETD { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 件重尺
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "目的地", IsNullable = true, Length = 100)]
|
|
public string PKC { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 箱型箱量
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "箱型箱量", IsNullable = true, Length = 100)]
|
|
public string CNTR { get; set; }
|
|
/// <summary>
|
|
/// 更改项目
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "更改项目", IsNullable = true, ColumnDataType = StaticConfig.CodeFirst_BigString)]
|
|
public string ProjectName { get; set; }
|
|
/// <summary>
|
|
/// 原内容
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "原内容", IsNullable = true, ColumnDataType = StaticConfig.CodeFirst_BigString)]
|
|
public string OldContent { get; set; }
|
|
/// <summary>
|
|
/// 现内容
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "现内容", IsNullable = true, ColumnDataType = StaticConfig.CodeFirst_BigString)]
|
|
public string NewContent { get; set; }
|
|
/// <summary>
|
|
/// 备注
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "备注", IsNullable = true, ColumnDataType = StaticConfig.CodeFirst_BigString)]
|
|
public string Remark
|
|
{
|
|
get; set;
|
|
}
|
|
|
|
|
|
}
|
|
}
|