21 lines
397 B
C#
Raw Normal View History

2025-07-30 16:51:08 +08:00
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; }
}
}