using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel;
using EMIS.ViewModel.Cache;
namespace EMIS.ViewModel.Specialtyclass
{
public class GrademajorView
{
///
/// 主键ID
///
[DisplayName("主键ID")]
public Guid GrademajorID { get; set; }
///
/// 年级专业编号
///
[Required]
[DisplayName("年级专业编号")]
[RegularExpression(@"^[0-9a-zA-Z\s?]+$", ErrorMessage = "请输入数字或英文字母")]
public string Code { get; set; }
///
/// 年级专业名称
///
[Required]
[DisplayName("年级专业名称")]
public string Name { get; set; }
///
/// 简称
///
[DisplayName("简称")]
public string Abbreviation { get; set; }
///
/// 院系专业
///
[Required]
[DisplayName("院系专业")]
public Guid? FacultymajorID { get; set; }
///
/// 院系专业编号
///
[DisplayName("院系专业编号")]
public string FacultymajorCode { get; set; }
///
/// 院系专业名称
///
[DisplayName("院系专业名称")]
public string FacultymajorName { get; set; }
///
/// 校区ID
///
[Display(ResourceType = typeof(EMIS.Resources.DataAnnotations.Label), Name = "Campus")]
public Guid? CampusID { get; set; }
///
/// 校区代码
///
[Display(ResourceType = typeof(EMIS.Resources.DataAnnotations.Label), Name = "CampusCode")]
public string CampusNo { get; set; }
///
/// 校区名称
///
[Display(ResourceType = typeof(EMIS.Resources.DataAnnotations.Label), Name = "CampusName")]
public string CampusName { get; set; }
///
/// 院系所
///
[Display(ResourceType = typeof(EMIS.Resources.DataAnnotations.Label), Name = "College")]
public Guid? CollegeID { get; set; }
///
/// 院系所代码
///
[Display(ResourceType = typeof(EMIS.Resources.DataAnnotations.Label), Name = "CollegeCode")]
public string CollegeCode { get; set; }
///
/// 院系所名称
///
[Display(ResourceType = typeof(EMIS.Resources.DataAnnotations.Label), Name = "CollegeName")]
public string CollegeName { get; set; }
///
/// 年级
///
[Required]
[DisplayName("年级")]
public int? SchoolyearID { get; set; }
///
/// 年级(Excel导入)
///
[DisplayName("年级")]
public string SchoolyearStr { get; set; }
///
/// 目标年级
///
[Required]
[DisplayName("目标年级")]
public int? BatchSchoolyearID { get; set; }
///
/// 是否覆盖
///
[DisplayName("是否覆盖")]
public bool IsOverwrite { get; set; }
///
/// 入学学期
///
[Required]
[DisplayName("入学学期")]
public int? SchoolcodeID { get; set; }
///
/// 入学学期(Excel导入)
///
[DisplayName("入学学期")]
public string SchoolcodeStr { get; set; }
///
/// 入学学期
///
[DisplayName("入学学期")]
public string SchoolcodeName
{
get
{
return IdNameExt.GetDictionaryItem(DictionaryItem.CF_Schoolcode.ToString())
.Where(x => x.Value == SchoolcodeID)
.Select(x => x.Name).FirstOrDefault();
}
}
///
/// 专业ID(Value)
///
[DisplayName("专业ID(Value)")]
public int? StandardID { get; set; }
///
/// 专业ID(Value)
///
[DisplayName("专业名称")]
public string StandardNameStr { get; set; }
///
/// 专业代码
///
[DisplayName("专业代码")]
public string StandardCode
{
get
{
var inistStandardCode = IdNameExt.GetDictionaryItem(DictionaryItem.CF_Standard.ToString())
.Where(x => x.Value == StandardID)
.Select(x => x.Code).FirstOrDefault();
return (inistStandardCode != null ? inistStandardCode.PadLeft(6, '0') : "");
}
}
///
/// 专业名称
///
[DisplayName("专业名称")]
public string StandardName
{
get
{
return IdNameExt.GetDictionaryItem(DictionaryItem.CF_Standard.ToString())
.Where(x => x.Value == StandardID)
.Select(x => x.Name).FirstOrDefault();
}
}
///
/// 培养层次
///
[Display(ResourceType = typeof(EMIS.Resources.DataAnnotations.Label), Name = "EducationID")]
public int? EducationID { get; set; }
///
/// 培养层次
///
[Display(ResourceType = typeof(EMIS.Resources.DataAnnotations.Label), Name = "EducationName")]
public string EducationName
{
get
{
return IdNameExt.GetDictionaryItem(DictionaryItem.CF_Education.ToString())
.Where(x => x.Value == EducationID)
.Select(x => x.Name).FirstOrDefault();
}
}
///
/// 学习形式
///
[DisplayName("学习形式")]
public int? LearningformID { get; set; }
///
/// 学习形式
///
[DisplayName("学习形式")]
public string LearningformName
{
get
{
return IdNameExt.GetDictionaryItem(DictionaryItem.CF_Learningform.ToString())
.Where(x => x.Value == LearningformID)
.Select(x => x.Name).FirstOrDefault();
}
}
///
/// 学制
///
[DisplayName("学制")]
public decimal? LearnSystem { get; set; }
///
/// 毕业学期
///
[DisplayName("毕业学期")]
public Guid? GraduatingSemesterID { get; set; }
///
/// 毕业学期对应的Value值
///
[DisplayName("值")]
public int? Value { get; set; }
///
/// 毕业学期
///
[DisplayName("毕业学期")]
public string GraduatingSemesterCode { get; set; }
///
/// 专业方向
///
[DisplayName("专业方向")]
public string Professional { get; set; }
///
/// 班级个数
///
[DisplayName("班级个数")]
public int? ClassmajorCount { get; set; }
///
/// 学生人数
///
[DisplayName("学生人数")]
public int? StudentCount { get; set; }
///
/// 所属校区(岭南)
///
[DisplayName("校区")]
public int? SchoolAreaID { get; set; }
public string SchoolAreaStr { get; set; }
public string SchoolAreaName
{
get
{
return IdNameExt.GetDictionaryItem(DictionaryItem.CF_SchoolArea.ToString())
.Where(x => x.Value == SchoolAreaID)
.Select(x => x.Name).FirstOrDefault();
}
}
///
/// 备注
///
[DisplayName("备注")]
public string Remark { get; set; }
///
/// 错误信息(Excel导入)
///
[DisplayName("未导入原因")]
public string ErrorMessage { get; set; }
///
/// 状态
///
[DisplayName("状态")]
public int? RecordStatus { get; set; }
///
/// 创建人
///
[DisplayName("创建人")]
public Guid? CreateUserID { get; set; }
///
/// 创建时间
///
[DisplayName("创建时间")]
public DateTime? CreateTime { get; set; }
///
/// 修改人
///
[DisplayName("修改人")]
public Guid? ModifyUserID { get; set; }
///
/// 修改时间
///
[DisplayName("修改时间")]
public DateTime? ModifyTime { get; set; }
}
}