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.

59 lines
1.8 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_sur", "函电信息电放保函")]
public class OpLetterSur : 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 LoadPort { 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>
[SqlSugar.SugarColumn(ColumnDescription = "收货人内容", IsNullable = true, Length = 600)]
public string ConsigneeContent { get; set; }
/// <summary>
/// 备注
/// </summary>
[SugarColumn(ColumnDescription = "备注", IsNullable = true, ColumnDataType = StaticConfig.CodeFirst_BigString)]
public string Remark { get; set; }
}
}