using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; namespace BookingJieFeng.DB.Model { [Table("t_code_disport")] public class t_code_disport { [Key] public int 港口代码 { get; set; } public string EDI代码 { get; set; } public string 英文名 { get; set; } public string 中文名 { get; set; } public string 航线 { get; set; } public string 国家 { get; set; } public int? 经度_1 { get; set; } public int? 经度_2 { get; set; } public string 经度 { get; set; } public int? 纬度_1 { get; set; } public int? 纬度_2 { get; set; } public string 纬度 { get; set; } public string 港口全名 { get; set; } public string 洲 { get; set; } public string 港口描述 { get; set; } public string 港口功能 { get; set; } public string 英文索引 { get; set; } public string 中文索引 { get; set; } public string 港口类型 { get; set; } public string 省份 { get; set; } public string 国家代码 { get; set; } } }