37 lines
808 B
C#
37 lines
808 B
C#
![]() |
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; }
|
|||
|
}
|
|||
|
}
|