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.
132 lines
2.9 KiB
C#
132 lines
2.9 KiB
C#
using System;
|
|
using HcUtility.Core;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace DSWeb.Areas.CommMng.Models
|
|
{
|
|
[JsonObject]
|
|
public class CodeDisportModel
|
|
{
|
|
#region
|
|
private string _portid = "";
|
|
/// <summary>
|
|
/// 港口代码
|
|
/// </summary>
|
|
public string PORTID
|
|
{
|
|
get { return _portid; }
|
|
set { _portid = value; }
|
|
}
|
|
|
|
private string _port = "";
|
|
/// <summary>
|
|
/// 港口英文名称
|
|
/// </summary>
|
|
public string PORT
|
|
{
|
|
get { return _port; }
|
|
set { _port = value; }
|
|
}
|
|
|
|
private string _cname = "";
|
|
/// <summary>
|
|
/// 中文名称
|
|
/// </summary>
|
|
public string CNAME
|
|
{
|
|
get { return _cname; }
|
|
set { _cname = value; }
|
|
}
|
|
|
|
private string _country = "";
|
|
/// <summary>
|
|
/// 国家
|
|
/// </summary>
|
|
public string COUNTRY
|
|
{
|
|
get { return _country; }
|
|
set { _country = value; }
|
|
}
|
|
|
|
private string _chau = "";
|
|
/// <summary>
|
|
/// 洲
|
|
/// </summary>
|
|
public string CHAU
|
|
{
|
|
get { return _chau; }
|
|
set { _chau = value; }
|
|
}
|
|
|
|
private string _explain = "";
|
|
/// <summary>
|
|
/// 说明
|
|
/// </summary>
|
|
public string EXPLAIN
|
|
{
|
|
get { return _explain; }
|
|
set { _explain = value; }
|
|
}
|
|
|
|
private string _porttype = "";
|
|
/// <summary>
|
|
/// 港口类型
|
|
/// </summary>
|
|
public string PORTTYPE
|
|
{
|
|
get { return _porttype; }
|
|
set { _porttype = value; }
|
|
}
|
|
|
|
private string _countryid = "";
|
|
/// <summary>
|
|
/// 国家代码
|
|
/// </summary>
|
|
public string COUNTRYID
|
|
{
|
|
get { return _countryid; }
|
|
set { _countryid = value; }
|
|
}
|
|
|
|
private string _lanegid = "";
|
|
/// <summary>
|
|
/// 航线编号
|
|
/// </summary>
|
|
public string LANEGID
|
|
{
|
|
get { return _lanegid; }
|
|
set { _lanegid = value; }
|
|
}
|
|
private string _lane = "";
|
|
/// <summary>
|
|
/// 航线
|
|
/// </summary>
|
|
public string LANE
|
|
{
|
|
get { return _lane; }
|
|
set { _lane = value; }
|
|
}
|
|
|
|
private string _edicode = "";
|
|
/// <summary>
|
|
/// EDICODE
|
|
/// </summary>
|
|
public string EDICODE
|
|
{
|
|
get { return _edicode; }
|
|
set { _edicode = value; }
|
|
}
|
|
|
|
private string _CodeAndName = "";
|
|
/// <summary>
|
|
/// CodeAndName
|
|
/// </summary>
|
|
public string CodeAndName
|
|
{
|
|
get { return _CodeAndName; }
|
|
set { _CodeAndName = value; }
|
|
}
|
|
#endregion
|
|
}
|
|
}
|