using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace EMISOnline.ViewModel.Educational
{
public class StudentView
{
public Guid UserID { get; set; }
///
/// 姓名
///
public string Name { get; set; }
///
/// 学号
///
public string LoginID { get; set; }
///
/// 院系所ID
///
public Guid? CollegeID { get; set; }
///
/// 院系所名称
///
public string CollegeName { get; set; }
///
/// 专业名称
///
public string StandardName { get; set; }
///
/// 入学学年学期
///
public Guid? SchoolyearID { get; set; }
///
/// 学年学期名称
///
public string SchoolyearName { get; set; }
///
/// 学籍类型
///
public int? StudentType { get; set; }
///
/// 学生状态
///
public int? StudentStatus { get; set; }
public string StudentStatusName { get; set; }
public DateTime? CreateTime { get; set; }
}
}