using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Admin.NET.Application { public class BusSeachStudentInfoOutDto { public string Code { get; set; } public string Msg { get; set; } public BusSeachStudentResult Result { get; set; } } public class BusSeachStudentResult { public string StudentId { get; set; } public string StudentName { get; set; } public string StudentCode { get; set; } public string GradeName { get; set; } /// /// /// public string Gender { get; set; } public string ClassName { get; set; } public string SchoolName { get; set; } } }