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_ctn_truck", DisableSyncStructure = true)] public partial class OpCtnTruck { /// /// 集装箱编号 /// [JsonProperty, Column(Name = "CTN_ID", DbType = "varchar(36)")] public string CTNID { get; set; } /// /// 司机姓名 /// [JsonProperty, Column(DbType = "varchar(20)")] public string DRIVER { get; set; } /// /// 编号 /// [JsonProperty, Column(DbType = "varchar(36)", IsNullable = false)] public string GID { get; set; } /// /// 司机身份证 /// [JsonProperty, Column(DbType = "varchar(18)")] public string IDENTITYCARD { get; set; } /// /// 是否完毕:0 生成单据1 完毕状态 /// [JsonProperty] public bool? ISTEAMSTATUS { get; set; } /// /// 派车单GID /// [JsonProperty, Column(Name = "LE_ID", DbType = "varchar(100)")] public string LEID { get; set; } /// /// 司机手机 /// [JsonProperty, Column(DbType = "varchar(50)")] public string MOBILE { get; set; } /// /// 派车类型:0 装货1 送货 /// [JsonProperty] public int? TEAMTYPE { get; set; } /// /// 车号 /// [JsonProperty, Column(DbType = "varchar(20)")] public string TRUCKNO { get; set; } } }