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.

63 lines
1.3 KiB
C#

using System;
using HcUtility.Core;
using Newtonsoft.Json;
namespace DSWeb.Areas.CommMng.Models
{
[JsonObject]
public class CodeLoadportModel
{
#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 _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
}
}