namespace Ds.Modules.DsEntity.Auth { /// /// 国外铁路站点表 /// public class Ds_Sys_Railway_Station : BasEntityNoTenant { /// /// 口岸名称 /// public string PortName { get; set; } /// /// 口岸代码 /// public string PortCode { get; set; } } /// /// 口岸别称表 /// public class Ds_Sys_Railway_Station_Info : BaseEntityTenant { /// /// 口岸ID /// public long PortID { get; set; } /// /// 口岸别称 /// public string PortAlias { get; set; } /// /// 国家 /// public int PortCountry { get; set; } /// /// 代码 /// public string CountryCode { get; set; } /// /// 铁路简称 /// public string Abbreviation { get; set; } /// /// 说明 /// public string Description { get; set; } /// /// 地址 /// public string Address { get; set; } /// /// 铁路局 /// public string RailwayBureau { get; set; } } }