using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace YD_WeChatApplet.Commons.Dto.School { /// /// 班级列表 /// public class ClassListDto { public int ClassId { get; set; } public int GradeId { get; set; } public string Name { get; set; } } }