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_sys_employee")] public class t_sys_employee { [Key] public string 姓名 { get; set; } public string 固定电话 { get; set; } public string 移动电话 { get; set; } public string 网上订舱代码 { get; set; } } }