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.
D7QUANTAI/DSWeb/Models/JsonCrmSeaeorderctnEntity.cs

64 lines
1.4 KiB
C#

using System;
using System.Data;
namespace DSWeb.Models
{
public class JsonCrmSeaeorderctnEntity
{
#region 私有成员
private string _CTN_ID;//编号
private string _ORDNO;//订舱编号
private string _CTNALL;//表现形式
private int _CTNNUM;//箱量
private string _REMARK;//备注
#endregion
public JsonCrmSeaeorderctnEntity()
{
}
#region 读写属性
/// <summary>
/// 编号
/// </summary>
public string CrmSeaeorderctn1
{
get { return _CTN_ID; }
set { _CTN_ID = value; }
}
/// <summary>
/// 表现形式
/// </summary>
public string CrmSeaeorderctn2
{
get { return _CTNALL; }
set { _CTNALL = value; }
}
/// <summary>
/// 箱量
/// </summary>
public int CrmSeaeorderctn3
{
get { return _CTNNUM; }
set { _CTNNUM = value; }
}
/// <summary>
/// 备注
/// </summary>
public string CrmSeaeorderctn4
{
get { return _REMARK; }
set { _REMARK = value; }
}
/// <summary>
/// 订舱编号
/// </summary>
public string CrmSeaeorderctn5
{
get { return _ORDNO; }
set { _ORDNO = value; }
}
#endregion
}
}