using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace YD_WeChatApplet.Commons.Dto.Server { /// /// 智慧体育用户管理页面数据传输对象 /// public class SmartSportsUserDto { /// /// 用户ID /// public int User_Id { get; set; } /// /// 用户名 /// public string UserName { get; set; } /// /// 用户姓名 /// public string UserTrueName { get; set; } /// /// 头像 /// public string HeadImageUrl { get; set; } /// /// 年级ID /// public int? GradeId { get; set; } /// /// 年级名称 /// public string GradeName { get; set; } /// /// 出生年月 /// public string BirthDate { get; set; } /// /// 性别 /// public int? Gender { get; set; } /// /// 地址 /// public string Address { get; set; } /// /// 身高(字符串格式) /// public string Height { get; set; } /// /// 体重(字符串格式) /// public string Weight { get; set; } /// /// 拥有身份 /// public string Role { get; set; } /// /// 创建时间 /// public DateTime? CreateDate { get; set; } } /// /// 智慧体育用户管理页面查询参数 /// public class SmartSportsUserParam : PageDto { /// /// 用户姓名 /// public string UserTrueName { get; set; } /// /// 年级ID /// public int? GradeId { get; set; } /// /// 性别 /// public int? Gender { get; set; } } }