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.
D7QUANTAI/DSWeb/Models/CrmSeaeorderctnEntity.cs

92 lines
2.1 KiB
C#

10 months ago
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 CrmSeaeorderctnEntity
{
#region 私有成员
private string _CTN_ID;//编号
private string _ORDNO;//订舱编号
private string _CTNALL;//表现形式
private int _CTNNUM;//箱量
private string _REMARK;//备注
private string _CNTRNO;//箱号
private string _SEALNO;//封号
#endregion
public CrmSeaeorderctnEntity()
{
}
#region 读写属性
/// <summary>
/// 编号
/// </summary>
public string CTN_ID
{
get { return _CTN_ID; }
set { _CTN_ID = value; }
}
/// <summary>
/// 订舱编号
/// </summary>
public string ORDNO
{
get { return _ORDNO; }
set { _ORDNO = value; }
}
/// <summary>
/// 表现形式
/// </summary>
public string CTNALL
{
get { return _CTNALL; }
set { _CTNALL = value; }
}
/// <summary>
/// 箱量
/// </summary>
public int CTNNUM
{
get { return _CTNNUM; }
set { _CTNNUM = value; }
}
/// <summary>
/// 箱号
/// </summary>
public string CNTRNO
{
get { return _CNTRNO; }
set { _CNTRNO = value; }
}
/// <summary>
/// 封号
/// </summary>
public string SEALNO
{
get { return _SEALNO; }
set { _SEALNO = value; }
}
/// <summary>
/// 备注
/// </summary>
public string REMARK
{
get { return _REMARK; }
set { _REMARK = value; }
}
#endregion
}
}