namespace Web.Core.Model.DTO; public class StudentDto { /// /// ID /// public int StudentId { get; set; } /// /// 用户名 /// public string Name { get; set; } /// /// 年龄 /// public int? Age { get; set; } /// /// 年龄 /// public int? Age2 { get; set; } /// /// 生日 /// public string Birthday { get; set; } /// /// 手机 /// public string Phone { get; set; } /// /// 地址 /// public string Address { get; set; } }