using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Admin.NET.Application { /// /// /// public class BusSeachStudentInfoInputDto { /// /// 约定Key(前端无需传值) /// public string Key { get; set; } /// /// 学生姓名 /// public string UserName { get; set; } /// /// 身份证号(学号) /// public string CardID { get; set; } } }