using FreeSql.DatabaseModel;using System; using System.Collections; using System.Collections.Generic; using System.Linq; using System.Reflection; using System.Threading.Tasks; using Newtonsoft.Json; using FreeSql.DataAnnotations; namespace djy.Model { [JsonObject(MemberSerialization.OptIn), Table(Name = "op_letter_sur", DisableSyncStructure = true)] public partial class OpLetterSur { /// /// 编号 /// [JsonProperty, Column(Name = "LE_ID", DbType = "varchar(100)", IsPrimary = true, IsNullable = false)] public string LEID { get; set; } /// /// 收货人 /// [JsonProperty, Column(DbType = "varchar(600)")] public string CONSIGNEE { get; set; } /// /// 主题单号 /// [JsonProperty, Column(DbType = "varchar(30)")] public string MBLNO { get; set; } /// /// 卸货港 /// [JsonProperty, Column(DbType = "varchar(30)")] public string PORTDISCHARGE { get; set; } /// /// 装货港 /// [JsonProperty, Column(DbType = "varchar(30)")] public string PORTLOAD { get; set; } /// /// 备注 /// [JsonProperty, Column(DbType = "varchar(600)")] public string REMARK { get; set; } /// /// 船名航次 /// [JsonProperty, Column(DbType = "varchar(100)")] public string VESSELVOYNO { get; set; } } }