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_vessel")] public class t_code_vessel { [Key] public string 英文船名 { get; set; } public string 中文船名 { get; set; } public string 船公司 { get; set; } public string 航线 { get; set; } public string 船舶呼号 { get; set; } public int? VS_ID1 { get; set; } public int VS_ID { get; set; } } }