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 Port_En_Name { get; set; }
///
/// 港口类型 1 港口· 2 内陆点
///
public int PortType { get; set; } = 1;
///
/// 国家
///
public string Port_Country { get; set; }
///
/// 国家简称
///
public string Port_Country_Code { get; set; }
///
/// 洲
///
public string Port_Country_Continent { get; set; }
///
/// 航线
///
public long Sea_Route_Id { get; set; }
///
/// 航线
///
public long Sea_Route_EDI { get; set; }
///
/// 是否系统默认 默认的不允许删除
///
public bool IsSystemDefault { get; set; } = false;
///
/// 港口说明
///
public string Port_Description { get; set; }
///
/// 使用次数 方便中文检索 可以用于排序
///
public int Port_Times { get; set; }
}
}