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 = "subcomp_seae_def", DisableSyncStructure = true)] public partial class SubcompSeaeDef { [JsonProperty, Column(DbType = "varchar(36)", IsPrimary = true, IsNullable = false)] public string GID { get; set; } = Guid.NewGuid().ToString().ToUpper(); [JsonProperty, Column(DbType = "varchar(20)")] public string AFRAGENTID { get; set; } [JsonProperty, Column(DbType = "varchar(20)")] public string AFRCARRIERID { get; set; } [JsonProperty, Column(DbType = "varchar(20)")] public string AFRETDTIME { get; set; } /// /// 付费方式 /// [JsonProperty, Column(DbType = "varchar(20)")] public string BLFRT { get; set; } /// /// 分公司代码 /// [JsonProperty, Column(DbType = "varchar(36)")] public string CORPID { get; set; } [JsonProperty] public bool? ISADVANCE { get; set; } = false; [JsonProperty] public bool? ISCGOL { get; set; } = false; [JsonProperty, Column(DbType = "varchar(10)")] public string KGS { get; set; } = ""; /// /// 装货港 /// [JsonProperty, Column(DbType = "varchar(60)")] public string PORTLOAD { get; set; } /// /// 装货港代码 /// [JsonProperty, Column(DbType = "varchar(36)")] public string PORTLOADID { get; set; } /// /// 运输条款 /// [JsonProperty, Column(DbType = "varchar(10)")] public string SERVICE { get; set; } } }