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