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_bs", DisableSyncStructure = true)] public partial class OpBs { [JsonProperty, Column(DbType = "smalldatetime")] public DateTime? BSDATE { get; set; } [JsonProperty, Column(DbType = "varchar(100)", IsNullable = false)] public string BSNO { get; set; } [JsonProperty, Column(DbType = "varchar(60)")] public string COUNTRYLOAD { get; set; } [JsonProperty] public DateTime? ETA { get; set; } [JsonProperty] public DateTime? ETD { get; set; } [JsonProperty, Column(DbType = "varchar(500)")] public string GOODCREPATH { get; set; } [JsonProperty, Column(DbType = "varchar(30)")] public string HBLNO { get; set; } [JsonProperty, Column(DbType = "varchar(10)")] public string INPUTBY { get; set; } [JsonProperty, Column(DbType = "varchar(30)")] public string MBLNO { get; set; } [JsonProperty, Column(DbType = "varchar(10)")] public string OP { get; set; } [JsonProperty, Column(DbType = "varchar(60)")] public string PORTDISCHARGE { get; set; } [JsonProperty, Column(DbType = "varchar(60)")] public string PORTLOAD { get; set; } [JsonProperty, Column(DbType = "varchar(60)")] public string VESSEL { get; set; } [JsonProperty, Column(DbType = "varchar(12)")] public string VOYNO { get; set; } [JsonProperty, Column(DbType = "varchar(60)")] public string WAREHOUSE { get; set; } } }