You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

90 lines
2.7 KiB
C#

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_business", DisableSyncStructure = true)]
public partial class ContainerBusiness {
[JsonProperty, Column(Name = "b_id", IsPrimary = true, IsIdentity = true)]
public int BId { get; set; }
[JsonProperty, Column(Name = "blno", DbType = "varchar(20)")]
public string Blno { get; set; }
[JsonProperty, Column(Name = "box_no", DbType = "varchar(20)")]
public string BoxNo { get; set; }
[JsonProperty, Column(Name = "cctime")]
public DateTime? Cctime { get; set; }
[JsonProperty, Column(Name = "cz", DbType = "varchar(100)")]
public string Cz { get; set; }
[JsonProperty, Column(Name = "duizhangriqi")]
public DateTime? Duizhangriqi { get; set; }
[JsonProperty, Column(Name = "etd")]
public DateTime? Etd { get; set; }
[JsonProperty, Column(Name = "fobport", DbType = "varchar(50)")]
public string Fobport { get; set; }
[JsonProperty, Column(Name = "fobportname", DbType = "varchar(50)")]
public string Fobportname { get; set; }
[JsonProperty, Column(Name = "gid", DbType = "varchar(50)")]
public string Gid { get; set; }
[JsonProperty, Column(Name = "jctime")]
public DateTime? Jctime { get; set; }
[JsonProperty, Column(Name = "jcyy", DbType = "varchar(100)")]
public string Jcyy { get; set; }
[JsonProperty, Column(DbType = "varchar(100)")]
public string ONEWAY { get; set; }
[JsonProperty, Column(Name = "operman", DbType = "varchar(20)")]
public string Operman { get; set; }
[JsonProperty, Column(Name = "opertime")]
public DateTime? Opertime { get; set; }
[JsonProperty, Column(Name = "position", DbType = "varchar(50)")]
public string Position { get; set; }
[JsonProperty, Column(Name = "positionname", DbType = "varchar(50)")]
public string Positionname { get; set; }
[JsonProperty, Column(Name = "reachtime")]
public DateTime? Reachtime { get; set; }
[JsonProperty, Column(DbType = "varchar(100)")]
public string Remarks { get; set; } = "";
[JsonProperty, Column(Name = "sdzt", DbType = "varchar(100)")]
public string Sdzt { get; set; }
[JsonProperty, Column(Name = "state")]
public int? State { get; set; }
[JsonProperty, Column(Name = "updatetime", InsertValueSql = "getdate()")]
public DateTime Updatetime { get; set; }
[JsonProperty, Column(Name = "vessel", DbType = "varchar(20)")]
public string Vessel { get; set; }
[JsonProperty, Column(Name = "voyage", DbType = "varchar(20)")]
public string Voyage { get; set; }
}
}