using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.Linq; using System.Text; using System.Threading.Tasks; using ARW.Model.Models.Business; namespace ARW.Model.Dto.Business { /// /// 输入对象 /// public class StudentDto { /// /// 学生Id /// public long StudentId { get; set; } public long ClassId { get; set; } public string DictType { get; set; } public string StudentName { get; set; } public string Sex { get; set; } public int? Age { get; set; } public string StudentImg { get; set; } public string StudentTag { get; set; } public Service[] StudentService { get; set; } public string StudentDescribe { get; set; } } /// /// 查询对象 /// public class StudentQueryDto : PagerInfo { /// /// 学生ID /// public long? StudentId { get; set; } /// /// 班级ID /// public long? ClassId { get; set; } /// /// 类型ID /// public string DictType { get; set; } /// /// 学生名称 /// public string StudentName { get; set; } } }