using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.ComponentModel;
using System.ComponentModel.DataAnnotations;
namespace EMIS.ViewModel.DQPSystem
{
public class SOCStudentScoreTotalView
{
///
/// 用户ID
///
[DisplayName("用户ID")]
public Guid? UserID { get; set; }
///
/// 姓名
///
[DisplayName("姓名")]
public string UserName { get; set; }
///
/// 院系所名称
///
[Display(ResourceType = typeof(EMIS.Resources.DataAnnotations.Label), Name = "College")]
public string CollegeName { get; set; }
///
/// 班级名称
///
[DisplayName("班级名称")]
public string ClassName { get; set; }
///
/// 毕业时间
///
[DisplayName("毕业时间")]
[DisplayFormat(DataFormatString = "{0:yyyy-MM-dd}")]
public DateTime? PlanningGraduateDate { get; set; }
///
/// 开课学期List
///
[DisplayName("开课学期List")]
public List ListStarttermID { get; set; }
public List SOCStudentScoreItemViewList { get; set; }
}
}