1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Web; 5 6 namespace APIapplication.Models 7 { 8 public class Employees 9 {10 public int? Id { get; set; }11 public int? DepartmentId { get; set; }12 public string Name { get; set; }13 public string Job { get; set; }14 public string Gender { get; set; }15 public string PhoneNum { get; set; }16 public string EmailAdderss { get; set; }17 public string Address { get; set; }18 }19 }
新闻热点
疑难解答