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.
96 lines
2.2 KiB
C#
96 lines
2.2 KiB
C#
using System;
|
|
using System.Data;
|
|
using System.Configuration;
|
|
using System.Linq;
|
|
using System.Web;
|
|
using System.Web.Security;
|
|
using System.Web.UI;
|
|
using System.Web.UI.HtmlControls;
|
|
using System.Web.UI.WebControls;
|
|
using System.Web.UI.WebControls.WebParts;
|
|
using System.Xml.Linq;
|
|
|
|
namespace DSWeb.Models
|
|
{
|
|
public class SeaContainerEntity
|
|
{
|
|
private string _ctn_id;//惟一主键
|
|
private string _bsno;//业务编号
|
|
private string _ctn_code;//箱型代码
|
|
private string _size;//尺寸
|
|
private string _ctn;//箱型名称
|
|
private int _ctn_num;//箱量
|
|
private int _teu;//TEU
|
|
private string _ctn_all;//表现形式
|
|
|
|
|
|
public SeaContainerEntity()
|
|
{
|
|
}
|
|
/// <summary>
|
|
/// 惟一主键
|
|
/// </summary>
|
|
public string CTNID
|
|
{
|
|
get { return _ctn_id; }
|
|
set { _ctn_id = value; }
|
|
}
|
|
/// <summary>
|
|
/// 业务编号
|
|
/// </summary>
|
|
public string BSNO
|
|
{
|
|
get { return _bsno; }
|
|
set { _bsno = value; }
|
|
}
|
|
/// <summary>
|
|
/// 箱型代码
|
|
/// </summary>
|
|
public string CTNCode
|
|
{
|
|
get { return _ctn_code; }
|
|
set { _ctn_code = value; }
|
|
}
|
|
/// <summary>
|
|
/// 尺寸
|
|
/// </summary>
|
|
public string Size
|
|
{
|
|
get { return _size; }
|
|
set { _size = value; }
|
|
}
|
|
/// <summary>
|
|
/// 箱型名称
|
|
/// </summary>
|
|
public string CTN
|
|
{
|
|
get { return _ctn; }
|
|
set { _ctn = value; }
|
|
}
|
|
/// <summary>
|
|
/// 箱量
|
|
/// </summary>
|
|
public int CTNNum
|
|
{
|
|
get { return _ctn_num; }
|
|
set { _ctn_num = value; }
|
|
}
|
|
/// <summary>
|
|
/// TEU
|
|
/// </summary>
|
|
public int TEU
|
|
{
|
|
get { return _teu; }
|
|
set { _teu = value; }
|
|
}
|
|
/// <summary>
|
|
/// 表现形式
|
|
/// </summary>
|
|
public string CTNAll
|
|
{
|
|
get { return _ctn_all; }
|
|
set { _ctn_all = value; }
|
|
}
|
|
}
|
|
}
|