using System.ComponentModel; namespace WebApi.Models { public class Student { public string Id { get; set; } [Description("姓名")] public string Name { get; set; } [Description("性别")] public string Sex { get; set; } [Description("民族")] public string Nation { get; set; } [Description("证件类型")] public string CardType { get; set; } [Description("证件号码")] public string IdCardNo { get; set; } [Description("出生日期")] public string Birthday { get; set; } [Description("考籍号")] public string ExamNo { get; set; } [Description("学籍号")] public string StudentNo { get; set; } [Description("外语语种")] public string LanguageNo { get; set; } [Description("学生标识")] public string StudentType { get; set; } [Description("班级编码")] public string Class { get; set; } [Description("注册年份")] public string Year { get; set; } [Description("学校")] public string School { get; set; } [Description("已审核")] public bool HasChecked { get; set; } } }