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