using System; using System.Collections.Generic; using System.Linq; using System.Web; namespace DSWeb.Models { public class OpctnEntity { /// /// 构造函数 /// public OpctnEntity() { } #region private string _ctn_id; /// /// 编号 /// public string CTN_ID { get { return _ctn_id; } set { _ctn_id = value; } } private string _bsno; /// /// 业务编号 /// public string BSNO { get { return _bsno; } set { _bsno = value; } } private string _ctncode; /// /// 箱型代码 /// public string CTNCODE { get { return _ctncode; } set { _ctncode = value; } } private string _size; /// /// 尺寸 /// public string SIZE { get { return _size; } set { _size = value; } } private string _ctn; /// /// 箱型 /// public string CTN { get { return _ctn; } set { _ctn = value; } } private int _ctnnum; /// /// 箱量 /// public int CTNNUM { get { return _ctnnum; } set { _ctnnum = value; } } private int _teu; /// /// TEU /// public int TEU { get { return _teu; } set { _teu = value; } } private string _ctnall; /// /// 表现形式 /// public string CTNALL { get { return _ctnall; } set { _ctnall = value; } } private string _cntrno; /// /// 箱号 /// public string CNTRNO { get { return _cntrno; } set { _cntrno = value; } } private string _sealno; /// /// 封号 /// public string SEALNO { get { return _sealno; } set { _sealno = value; } } private int _pkgs; /// /// 件数 /// public int PKGS { get { return _pkgs; } set { _pkgs = value; } } private decimal _kgs; /// /// 重量(货物重) /// public decimal KGS { get { return _kgs; } set { _kgs = value; } } private decimal _cbm; /// /// 尺码 /// public decimal CBM { get { return _cbm; } set { _cbm = value; } } private string _remark; /// /// 备注 /// public string REMARK { get { return _remark; } set { _remark = value; } } private string _kindpkgs; /// /// 包装类型 /// public string KINDPKGS { get { return _kindpkgs; } set { _kindpkgs = value; } } private decimal _tareweight; /// /// 箱皮重 /// public decimal TAREWEIGHT { get { return _tareweight; } set { _tareweight = value; } } private string _goodsname; /// /// 品名 /// public string Goodsname { get { return _goodsname; } set { _goodsname = value; } } #endregion } }