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