37 lines
808 B
C#
Raw Normal View History

2025-01-13 21:06:59 +08:00
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations.Schema;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace YD_XinWei.Commons.Dto.School
{
/// <summary>
/// 学生列表
/// </summary>
public class StudentListDto
{
/// <summary>
///学生学号
/// </summary>
public string StudentNo { get; set; }
/// <summary>
///学生名称
/// </summary>
public string StudentName { get; set; }
/// <summary>
///性别
/// </summary>
public int Sex { get; set; }
/// <summary>
///学生照片
/// </summary>
public string Photo { get; set; }
}
}