37 lines
800 B
C#
37 lines
800 B
C#
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; }
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string Gender { get; set; }
|
|
public string ClassName { get; set; }
|
|
public string SchoolName { get; set; }
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|