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