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