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 = "code_railwayport", DisableSyncStructure = true)] public partial class CodeRailwayport { [JsonProperty, Column(DbType = "varchar(36)", IsPrimary = true, IsNullable = false)] public string GID { get; set; } [JsonProperty, Column(DbType = "varchar(30)")] public string BORDERPORTID { get; set; } [JsonProperty, Column(DbType = "varchar(60)")] public string CITYCNAME { get; set; } [JsonProperty, Column(DbType = "varchar(60)")] public string CITYENAME { get; set; } [JsonProperty, Column(DbType = "numeric(18,3)")] public decimal? DTALSHANKOU { get; set; } [JsonProperty, Column(DbType = "numeric(18,3)")] public decimal? DTDANDONG { get; set; } [JsonProperty, Column(DbType = "numeric(18,3)")] public decimal? DTERLIAN { get; set; } [JsonProperty, Column(DbType = "numeric(18,3)")] public decimal? DTHORGOS { get; set; } [JsonProperty, Column(DbType = "numeric(18,3)")] public decimal? DTMANZHOULI { get; set; } [JsonProperty, Column(DbType = "numeric(18,3)")] public decimal? DTPINGXIANG { get; set; } [JsonProperty, Column(DbType = "numeric(18,3)")] public decimal? DTSUIFENHE { get; set; } [JsonProperty] public bool? IS20 { get; set; } [JsonProperty] public bool? IS40 { get; set; } [JsonProperty] public bool? IS48 { get; set; } [JsonProperty] public bool? IS50 { get; set; } [JsonProperty] public bool? ISBORDERPORT { get; set; } [JsonProperty] public bool? ISBULK { get; set; } [JsonProperty] public bool? ISCN { get; set; } [JsonProperty] public bool? ISDSCAR { get; set; } [JsonProperty] public bool? ISFLAT { get; set; } [JsonProperty] public bool? ISOFTEN { get; set; } [JsonProperty] public bool? ISTANK { get; set; } [JsonProperty, Column(DbType = "varchar(30)")] public string PORTCNAME { get; set; } [JsonProperty, Column(DbType = "varchar(300)")] public string PORTDETAIL { get; set; } [JsonProperty, Column(DbType = "varchar(60)")] public string PORTENAME { get; set; } [JsonProperty, Column(DbType = "varchar(10)", IsNullable = false)] public string PORTID { get; set; } [JsonProperty, Column(DbType = "varchar(1)")] public string PORTTYPE { get; set; } [JsonProperty, Column(DbType = "varchar(30)")] public string PROVINCE { get; set; } [JsonProperty, Column(DbType = "varchar(20)")] public string RAILBUREAU { get; set; } [JsonProperty, Column(DbType = "varchar(300)")] public string REMARKS { get; set; } [JsonProperty, Column(DbType = "varchar(100)")] public string WORKPOWER { get; set; } } }