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 = "container_info", DisableSyncStructure = true)] public partial class ContainerInfo { [JsonProperty, Column(Name = "cntrid", IsPrimary = true, IsIdentity = true)] public int Cntrid { get; set; } [JsonProperty, Column(Name = "beginpostion", DbType = "varchar(50)")] public string Beginpostion { get; set; } [JsonProperty, Column(Name = "buytime")] public DateTime? Buytime { get; set; } [JsonProperty, Column(Name = "cnsource", DbType = "varchar(20)")] public string Cnsource { get; set; } [JsonProperty, Column(Name = "cntrno", DbType = "varchar(20)")] public string Cntrno { get; set; } [JsonProperty, Column(Name = "cntrowner", DbType = "varchar(20)")] public string Cntrowner { get; set; } [JsonProperty, Column(Name = "cntype", DbType = "varchar(20)")] public string Cntype { get; set; } [JsonProperty, Column(Name = "gid", DbType = "varchar(50)")] public string Gid { get; set; } [JsonProperty, Column(Name = "position", DbType = "varchar(50)")] public string Position { get; set; } [JsonProperty, Column(Name = "positionName", DbType = "varchar(200)")] public string PositionName { get; set; } [JsonProperty, Column(DbType = "varchar(100)")] public string REMARK { get; set; } = ""; [JsonProperty, Column(Name = "rent_begintime")] public DateTime? RentBegintime { get; set; } [JsonProperty, Column(Name = "rent_endtime")] public DateTime? RentEndtime { get; set; } [JsonProperty, Column(Name = "selltime")] public DateTime? Selltime { get; set; } [JsonProperty, Column(Name = "status")] public int? Status { get; set; } [JsonProperty, Column(Name = "vessel", DbType = "varchar(50)")] public string Vessel { get; set; } [JsonProperty, Column(Name = "voyage", DbType = "varchar(20)")] public string Voyage { get; set; } [JsonProperty, Column(Name = "voyno", DbType = "varchar(20)")] public string Voyno { get; set; } } }