namespace Ds.Modules.DsEntity.Auth { /// /// 港口 /// public class Ds_Sys_Sea_Port : BaseEntityTenant { /// /// 港口名称 /// public string PortName { get; set; } /// /// /// 港口编码 /// public string PortCode { get; set; } /// /// 港口简称 /// public string PortShortName { get; set; } /// /// 港口英文名字 /// public string PortEnName { get; set; } /// /// 港口类型 1 港口· 2 内陆点 /// public int PortType { get; set; } = 1; /// /// 国家 /// public string Country { get; set; } /// /// 国家简称 /// public string CountryCode { get; set; } /// /// 洲 /// public string CountryContinent { get; set; } /// /// 航线 /// public long SeaRouteId { get; set; } /// /// 航线 /// public long SeaRouteEDI { get; set; } /// /// 是否系统默认 默认的不允许删除 /// public bool IsSystemDefault { get; set; } = false; /// /// 港口说明 /// public string PortDescription { get; set; } /// /// 使用次数 方便中文检索 可以用于排序 /// public int PortTimes { get; set; } } }