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 { /// /// 函电信息电放保函 /// [SqlSugar.SugarTable("op_letter_sur", "函电信息电放保函")] public class OpLetterSur : BaseOrgModel { /// /// LetterId /// [SugarColumn(ColumnDescription = "LetterId")] public long LetterId { get; set; } /// /// 主提单号 /// [SqlSugar.SugarColumn(ColumnDescription = "主提单号", IsNullable = false, Length = 30)] public string MBLNO { get; set; } /// /// 装货港 /// [SugarColumn(ColumnDescription = "装货港", Length = 60, IsNullable = true)] public string LoadPort { get; set; } /// /// 卸货港 /// [SugarColumn(ColumnDescription = "卸货港", Length = 60, IsNullable = true)] public string DischargePort { get; set; } /// /// 船名航次 /// [SugarColumn(ColumnDescription = "卸货港", Length = 100, IsNullable = true)] public string VesselVoyNo { get; set; } /// /// 收货人内容 /// [SqlSugar.SugarColumn(ColumnDescription = "收货人内容", IsNullable = true, Length = 600)] public string ConsigneeContent { get; set; } /// /// 备注 /// [SugarColumn(ColumnDescription = "备注", IsNullable = true, ColumnDataType = StaticConfig.CodeFirst_BigString)] public string Remark { get; set; } } }