using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.ComponentModel;
using System.ComponentModel.DataAnnotations;
using EMIS.ViewModel.CacheManage;
namespace EMIS.ViewModel.EnrollManage.SpecialtyManage
{
public class SpecialtyApplyView
{
///
/// 主键ID
///
[DisplayName("主键ID")]
public Guid SpecialtyApplyID { get; set; }
///
/// 专业信息ID
///
[Required]
[DisplayName("专业信息ID")]
public Guid? SpecialtyID { get; set; }
///
/// 专业ID(Value)
///
[DisplayName("专业ID(Value)")]
public int? StandardID { get; set; }
///
/// 专业代码
///
[DisplayName("专业代码")]
public string StandardCode { get; set; }
///
/// 专业名称
///
[DisplayName("专业名称")]
public string StandardName { get; set; }
///
/// 专业代码
///
[DisplayName("专业代码")]
public string Code
{
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 Name
{
get
{
return IdNameExt.GetDictionaryItem(DictionaryItem.CF_Standard.ToString()).Where(x => x.Value == StandardID).Select(x => x.Name).FirstOrDefault();
}
}
///
/// 院系所ID
///
[Required]
[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; }
///
/// 校区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 CampusCode { get; set; }
///
/// 校区名称
///
[Display(ResourceType = typeof(EMIS.Resources.DataAnnotations.Label), Name = "CampusName")]
public string CampusName { get; set; }
///
/// 年级
///
[Required]
[DisplayName("年级")]
public int? GradeID { get; set; }
///
/// 年级
///
[DisplayName("年级")]
public string GradeName
{
get
{
return IdNameExt.GetDictionaryItem(DictionaryItem.CF_Grade.ToString()).Where(x => x.Value == GradeID).Select(x => x.Name).FirstOrDefault();
}
}
///
/// 学期
///
[Required]
[DisplayName("学期")]
public int? SemesterID { get; set; }
///
/// 学期
///
[DisplayName("学期")]
public string SemesterName
{
get
{
return IdNameExt.GetDictionaryItem(DictionaryItem.CF_Semester.ToString()).Where(x => x.Value == SemesterID).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("学制")]
[DisplayFormat(DataFormatString = "{0:#.#}")]
public decimal? LearnSystem { get; set; }
///
/// 专业科类
///
[DisplayName("专业科类")]
public int? ScienceclassID { get; set; }
///
/// 专业科类
///
[DisplayName("专业科类")]
public string ScienceclassName
{
get
{
return IdNameExt.GetDictionaryItem(DictionaryItem.CF_Scienceclass.ToString()).Where(x => x.Value == ScienceclassID).Select(x => x.Name).FirstOrDefault();
}
}
///
/// 专业属性
///
[DisplayName("专业属性")]
public int? PropertyID { get; set; }
///
/// 专业属性
///
[DisplayName("专业属性")]
public string PropertyName
{
get
{
return IdNameExt.GetDictionaryItem(DictionaryItem.CF_Property.ToString()).Where(x => x.Value == PropertyID).Select(x => x.Name).FirstOrDefault();
}
}
///
/// 专业称号
///
[DisplayName("专业称号")]
public int? StandardTitle { get; set; }
///
/// 专业称号
///
[DisplayName("专业称号")]
public string StandardTitleName
{
get
{
return IdNameExt.GetDictionaryItem(DictionaryItem.CF_StandardTitle.ToString()).Where(x => x.Value == StandardTitle).Select(x => x.Name).FirstOrDefault();
}
}
///
/// 称号级别
///
[DisplayName("称号级别")]
public int? StandardLevel { get; set; }
///
/// 称号级别
///
[DisplayName("称号级别")]
public string StandardLevelName
{
get
{
return IdNameExt.GetDictionaryItem(DictionaryItem.CF_StandardLevel.ToString()).Where(x => x.Value == StandardLevel).Select(x => x.Name).FirstOrDefault();
}
}
///
/// 审批状态
///
[DisplayName("审批状态")]
public int? ApprovalStatus { get; set; }
///
/// 审批状态
///
[DisplayName("审批状态")]
public string ApprovalStatusName { get; set; }
///
/// 处理动作
///
[Required]
[DisplayName("处理动作")]
public string Action { get; set; }
///
/// 处理意见
///
[DisplayName("处理意见")]
public string Comment { get; set; }
///
/// 备注
///
[DisplayName("备注")]
public string Remark { get; set; }
///
/// 状态
///
[DisplayName("状态")]
public int? RecordStatus { get; set; }
///
/// 申请人
///
[DisplayName("申请人")]
public Guid? CreateUserID { get; set; }
///
/// 申请工号
///
[DisplayName("申请工号")]
public string CreateUserCode { get; set; }
///
/// 申请人
///
[DisplayName("申请人")]
public string CreateUserName { get; set; }
///
/// 申请时间
///
[DisplayName("申请时间")]
public DateTime? CreateTime { get; set; }
///
/// 修改人
///
[DisplayName("修改人")]
public Guid? ModifyUserID { get; set; }
///
/// 修改时间
///
[DisplayName("修改时间")]
public DateTime? ModifyTime { get; set; }
}
}