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
{
///
/// 学生列表
///
public class StudentListDto
{
///
///学生学号
///
public string StudentNo { get; set; }
///
///学生名称
///
public string StudentName { get; set; }
///
///性别
///
public int Sex { get; set; }
///
///学生照片
///
public string Photo { get; set; }
}
}