21 lines
397 B
C#
21 lines
397 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace YD_XinWei.Commons.Dto.LargeScreen
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// 学生列表
|
|||
|
/// </summary>
|
|||
|
public class StudentListDto
|
|||
|
{
|
|||
|
public string StudentNo { get; set; }
|
|||
|
|
|||
|
public string Photo { get; set; }
|
|||
|
|
|||
|
public int Sex { get; set; }
|
|||
|
}
|
|||
|
}
|