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.
127 lines
3.0 KiB
C#
127 lines
3.0 KiB
C#
using System;
|
|
using System.Data;
|
|
|
|
namespace DSWeb.Models
|
|
{
|
|
public class JsonTopCtnEntity
|
|
{
|
|
#region 私有成员
|
|
private string _CTN_ID;//编号
|
|
private string _BSNO;//业务编号
|
|
private string _CTNALL;//表现形式
|
|
private int _CTNNUM;//箱量
|
|
private string _REMARK;//备注
|
|
private string _CNTRNO;//箱号
|
|
private string _SEALNO;//封号
|
|
private int _PKGS;//件数
|
|
private Decimal _KGS;//箱内货重
|
|
private Decimal _CBM;//尺码,
|
|
private Decimal _TAREWEIGHT;//箱皮重
|
|
private string _KINDPKGS;//包装类型
|
|
#endregion
|
|
|
|
public JsonTopCtnEntity()
|
|
{
|
|
}
|
|
|
|
#region 读写属性
|
|
/// <summary>
|
|
/// 编号
|
|
/// </summary>
|
|
public string TopCtn1
|
|
{
|
|
get { return _CTN_ID; }
|
|
set { _CTN_ID = value; }
|
|
}
|
|
/// <summary>
|
|
/// 表现形式
|
|
/// </summary>
|
|
public string TopCtn2
|
|
{
|
|
get { return _CTNALL; }
|
|
set { _CTNALL = value; }
|
|
}
|
|
/// <summary>
|
|
/// 箱量
|
|
/// </summary>
|
|
public int TopCtn3
|
|
{
|
|
get { return _CTNNUM; }
|
|
set { _CTNNUM = value; }
|
|
}
|
|
/// <summary>
|
|
/// 箱号
|
|
/// </summary>
|
|
public string TopCtn4
|
|
{
|
|
get { return _CNTRNO; }
|
|
set { _CNTRNO = value; }
|
|
}
|
|
/// <summary>
|
|
/// 封号
|
|
/// </summary>
|
|
public string TopCtn5
|
|
{
|
|
get { return _SEALNO; }
|
|
set { _SEALNO = value; }
|
|
}
|
|
/// <summary>
|
|
/// 件数
|
|
/// </summary>
|
|
public int TopCtn6
|
|
{
|
|
get { return _PKGS; }
|
|
set { _PKGS = value; }
|
|
}
|
|
/// <summary>
|
|
/// 包装类型
|
|
/// </summary>
|
|
public string TopCtn7
|
|
{
|
|
get { return _KINDPKGS; }
|
|
set { _KINDPKGS = value; }
|
|
}
|
|
/// <summary>
|
|
/// 箱内货重
|
|
/// </summary>
|
|
public Decimal TopCtn8
|
|
{
|
|
get { return _KGS; }
|
|
set { _KGS = value; }
|
|
}
|
|
/// <summary>
|
|
/// 箱皮重
|
|
/// </summary>
|
|
public Decimal TopCtn9
|
|
{
|
|
get { return _TAREWEIGHT; }
|
|
set { _TAREWEIGHT = value; }
|
|
}
|
|
/// <summary>
|
|
/// 尺码
|
|
/// </summary>
|
|
public Decimal TopCtn10
|
|
{
|
|
get { return _CBM; }
|
|
set { _CBM = value; }
|
|
}
|
|
/// <summary>
|
|
/// 备注
|
|
/// </summary>
|
|
public string TopCtn11
|
|
{
|
|
get { return _REMARK; }
|
|
set { _REMARK = value; }
|
|
}
|
|
/// <summary>
|
|
/// 订舱编号
|
|
/// </summary>
|
|
public string TopCtn12
|
|
{
|
|
get { return _BSNO; }
|
|
set { _BSNO = value; }
|
|
}
|
|
#endregion
|
|
}
|
|
}
|