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.
100 lines
2.2 KiB
C#
100 lines
2.2 KiB
C#
using System;
|
|
using HcUtility.Core;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace DSWeb.Areas.CommMng.Models
|
|
{
|
|
[JsonObject]
|
|
public class CodeCtnModel
|
|
{
|
|
#region
|
|
private string _ctnid = "";
|
|
/// <summary>
|
|
/// 代码
|
|
/// </summary>
|
|
public string CTNID
|
|
{
|
|
get { return _ctnid; }
|
|
set { _ctnid = value; }
|
|
}
|
|
|
|
private string _ctnsize = "";
|
|
/// <summary>
|
|
/// 集装箱类型
|
|
/// </summary>
|
|
public string CTNSIZE
|
|
{
|
|
get { return _ctnsize; }
|
|
set { _ctnsize = value; }
|
|
}
|
|
|
|
private string _ctntype = "";
|
|
/// <summary>
|
|
/// 集装箱尺寸
|
|
/// </summary>
|
|
public string CTNTYPE
|
|
{
|
|
get { return _ctntype; }
|
|
set { _ctntype = value; }
|
|
}
|
|
|
|
private string _ctn = "";
|
|
/// <summary>
|
|
/// 表现形式
|
|
/// </summary>
|
|
public string CTN
|
|
{
|
|
get { return _ctn; }
|
|
set { _ctn = value; }
|
|
}
|
|
|
|
private string _edicode = "";
|
|
/// <summary>
|
|
/// EDI代码
|
|
/// </summary>
|
|
public string EDICODE
|
|
{
|
|
get { return _edicode; }
|
|
set { _edicode = value; }
|
|
}
|
|
|
|
private decimal _ctnweight = 0;
|
|
/// <summary>
|
|
/// 箱皮重
|
|
/// </summary>
|
|
public decimal CTNWEIGHT
|
|
{
|
|
get { return _ctnweight; }
|
|
set { _ctnweight = value; }
|
|
}
|
|
|
|
private string _eexplain = "";
|
|
/// <summary>
|
|
/// 英文说明
|
|
/// </summary>
|
|
public string EEXPLAIN
|
|
{
|
|
get { return _eexplain; }
|
|
set { _eexplain = value; }
|
|
}
|
|
|
|
private string _cexplain = "";
|
|
/// <summary>
|
|
/// 中文说明
|
|
/// </summary>
|
|
public string CEXPLAIN
|
|
{
|
|
get { return _cexplain; }
|
|
set { _cexplain = value; }
|
|
}
|
|
|
|
private decimal _dlikgs = 0M;
|
|
public decimal DLIKGS
|
|
{
|
|
get { return _dlikgs; }
|
|
set { _dlikgs = value; }
|
|
}
|
|
#endregion
|
|
}
|
|
}
|