namespace Ds.Modules.DsEntity.Auth { /// /// 国外铁路站点表 /// public class Ds_Sys_Railway_Station : BasEntityNoTenant { /// /// 口岸名称 /// public string Port_Name { get; set; } /// /// 口岸代码 /// public string Port_Code { get; set; } } /// /// 口岸别称表 /// public class Ds_Sys_Railway_Station_Info : BaseEntityTenant { /// /// 口岸ID /// public long Port_ID { get; set; } /// /// 口岸别称 /// public string Port_Alias { get; set; } /// /// 国家 /// public int Port_Country { get; set; } /// /// 代码 /// public string Port_CountryCode { get; set; } /// /// 铁路简称 /// public string Port_Abbreviation { get; set; } /// /// 说明 /// public string Port_description { get; set; } /// /// 地址 /// public string Port_Address { get; set; } /// /// 铁路局 /// public string Railway_Bureau { get; set; } } }