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.
DS7/DSWeb/Models/OpctnEntity.cs

190 lines
4.1 KiB
C#

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