using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using VOL.Entity.Enum;
namespace VOL.Model.Ai
{
///
/// 学生集合
///
public class Ai_StudentListDto
{
///
/// AI设备的唯一编码
///
public string Code { get; set; }
///
/// 学生性别
///
public SexType Sex { get; set; }
///
/// 年龄
///
public int Age { get; set; }
///
/// 全国学籍号
///
public string StudentNo { get; set; }
///
/// 学生姓名
///
public string StudentName { get; set; }
///
/// 头像
///
public string Photo { get; set; }
///
/// 年级名称
///
public string GradeName { get; set; }
///
/// 班级名称
///
public string ClassName { get; set; }
///
/// 排序
///
public int? OrderNo { get; set; }
}
}