using System; using System.Collections.Generic; using System.Linq; using System.Web; namespace DSWeb.Models { public class OpCtnTruckEntity { /// /// 构造函数 /// public OpCtnTruckEntity() { } private string _gid; /// /// 编号 /// public string GID { get { return _gid; } set { _gid = value; } } private string _ctn_id; /// /// 集装箱编号 /// public string CTN_ID { get { return _ctn_id; } set { _ctn_id = value; } } private string _le_id; /// /// 派车单GID /// public string LE_ID { get { return _le_id; } set { _le_id = value; } } private int _teamtype; /// /// 派车类型:0 装货1 送货 /// public int TEAMTYPE { get { return _teamtype; } set { _teamtype = value; } } private bool _isteamstatus; /// /// 是否完毕:0 生成单据1 完毕状态 /// public bool ISTEAMSTATUS { get { return _isteamstatus; } set { _isteamstatus = value; } } private string _truckno; /// /// 车号 /// public string TRUCKNO { get { return _truckno; } set { _truckno = value; } } private string _driver; /// /// 司机姓名 /// public string DRIVER { get { return _driver; } set { _driver = value; } } private string _identitycard; /// /// 司机身份证 /// public string IDENTITYCARD { get { return _identitycard; } set { _identitycard = value; } } private string _mobile; /// /// 司机手机 /// public string MOBILE { get { return _mobile; } set { _mobile = value; } } } }