using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Text;
using EMIS.ViewModel.CacheManage;
namespace EMIS.ViewModel.StudentManage.StudentChange
{
public class StudentChangeView
{
///
/// 主键ID
///
[DisplayName("主键ID")]
public Guid StudentChangeID { get; set; }
///
/// 学生信息ID
///
[Required]
[DisplayName("学生信息ID")]
public Guid? UserID { get; set; }
///
/// 学号
///
[DisplayName("学号")]
public string StudentNo { get; set; }
///
/// 姓名
///
[DisplayName("姓名")]
public string Name { get; set; }
///
/// 性别
///
[DisplayName("性别")]
public int? SexID { get; set; }
///
/// 性别
///
[DisplayName("性别")]
public string SexName
{
get
{
return IdNameExt.GetDictionaryItem(DictionaryItem.CF_Sex.ToString()).Where(x => x.Value == SexID).Select(x => x.Name).FirstOrDefault();
}
}
///
/// 出生日期
///
[DisplayName("出生日期")]
[DataType(DataType.Date)]
public DateTime? BirthDate { get; set; }
///
/// 民族
///
[DisplayName("民族")]
public int? NationID { get; set; }
///
/// 民族
///
[DisplayName("民族")]
public string NationName
{
get
{
return IdNameExt.GetDictionaryItem(DictionaryItem.CF_Nation.ToString()).Where(x => x.Value == NationID).Select(x => x.Name).FirstOrDefault();
}
}
///
/// 政治面貌
///
[DisplayName("政治面貌")]
public int? PoliticsID { get; set; }
///
/// 政治面貌
///
[DisplayName("政治面貌")]
public string PoliticsName
{
get
{
return IdNameExt.GetDictionaryItem(DictionaryItem.CF_Politics.ToString()).Where(x => x.Value == PoliticsID).Select(x => x.Name).FirstOrDefault();
}
}
///
/// 在校状态
///
[DisplayName("在校状态")]
public int? InSchoolStatusID { get; set; }
///
/// 在校状态
///
[DisplayName("在校状态")]
public string InSchoolStatusName
{
get
{
return IdNameExt.GetDictionaryItem(DictionaryItem.CF_InschoolStatus.ToString()).Where(x => x.Value == InSchoolStatusID).Select(x => x.Name).FirstOrDefault();
}
}
///
/// 学籍状态
///
[DisplayName("学籍状态")]
public int? StudentStatus { get; set; }
///
/// 学籍状态
///
[DisplayName("学籍状态")]
public string StudentStatusName
{
get
{
return IdNameExt.GetDictionaryItem(DictionaryItem.CF_StudentStatus.ToString()).Where(x => x.Value == StudentStatus).Select(x => x.Name).FirstOrDefault();
}
}
///
/// 年级
///
[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();
}
}
///
/// 入学学期
///
[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();
}
}
///
/// 专业ID(Value)
///
[DisplayName("专业ID(Value)")]
public int? StandardID { 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 int? ClassNum { get; set; }
///
/// 班级信息ID
///
[DisplayName("班级信息ID")]
public Guid? ClassmajorID { get; set; }
///
/// 班级编号
///
[DisplayName("班级编号")]
public string ClassmajorNo { get; set; }
///
/// 班级名称
///
[DisplayName("班级名称")]
public string ClassmajorName { get; set; }
///
/// 年级专业ID
///
[DisplayName("年级专业ID")]
public Guid? GrademajorID { get; set; }
///
/// 年级专业编号
///
[DisplayName("年级专业编号")]
public string GrademajorCode { get; set; }
///
/// 年级专业名称
///
[DisplayName("年级专业名称")]
public string GrademajorName { get; set; }
///
/// 院系专业ID
///
[DisplayName("院系专业ID")]
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 = "College")]
public Guid? CollegeID { get; set; }
///
/// 院系所代码
///
[Display(ResourceType = typeof(EMIS.Resources.DataAnnotations.Label), Name = "CollegeCode")]
public string CollegeNo { get; set; }
///
/// 院系所
///
[Display(ResourceType = typeof(EMIS.Resources.DataAnnotations.Label), Name = "College")]
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 = "Campus")]
public string CampusName { get; set; }
///
/// 入学学年学期ID
///
[DisplayName("入学学年学期ID")]
public Guid? StartSchoolyearID { get; set; }
///
/// 入学学年学期对应的Value值
///
[DisplayName("StartSchoolyearValue")]
public int? StartSchoolyearValue { get; set; }
///
/// 入学学年学期
///
[DisplayName("入学学年学期")]
public string StartSchoolyearCode { get; set; }
///
/// 异动学期ID
///
[Required]
[DisplayName("异动学期ID")]
public Guid? SchoolyearID { get; set; }
///
/// 异动学期对应的Value值
///
[DisplayName("SchoolyearValue")]
public int? SchoolyearValue { get; set; }
///
/// 异动学期
///
[DisplayName("异动学期")]
public string SchoolyearCode { get; set; }
///
/// 毕业学期
///
[DisplayName("毕业学期")]
public Guid? GraduateSchoolyearID { get; set; }
///
/// 毕业学期Value
///
[DisplayName("GraduateSchoolyearValue")]
public int? GraduateSchoolyearValue { get; set; }
///
/// 毕业学期
///
[DisplayName("毕业学期")]
public string GraduateSchoolyearCode { get; set; }
///
/// 注册状态
///
[DisplayName("注册状态")]
public int? ReportStatus { get; set; }
///
/// 注册状态
///
[DisplayName("注册状态")]
public string ReportStatusName
{
get
{
return IdNameExt.GetDictionaryItem(DictionaryItem.CF_ReportStatus.ToString()).Where(x => x.Value == ReportStatus).Select(x => x.Name).FirstOrDefault();
}
}
///
/// 异动类型
///
[Required]
[DisplayName("异动类型")]
public int? ChangeTypeID { get; set; }
///
/// 异动类型
///
[DisplayName("异动类型")]
public string ChangeTypeName
{
get
{
return IdNameExt.GetDictionaryItem(DictionaryItem.CF_ChangeType.ToString()).Where(x => x.Value == ChangeTypeID).Select(x => x.Name).FirstOrDefault();
}
}
///
/// 院系所ID(异动前)
///
[Display(ResourceType = typeof(EMIS.Resources.DataAnnotations.Label), Name = "College")]
public Guid? BeforeCollegeID { get; set; }
///
/// 院系所代码(异动前)
///
[Display(ResourceType = typeof(EMIS.Resources.DataAnnotations.Label), Name = "CollegeCode")]
public string BeforeCollegeNo { get; set; }
///
/// 院系所(异动前)
///
[Display(ResourceType = typeof(EMIS.Resources.DataAnnotations.Label), Name = "College")]
public string BeforeCollegeName { get; set; }
///
/// 年级(异动前)
///
[DisplayName("年级(异动前)")]
public int? BeforeGradeID { get; set; }
///
/// 年级(异动前)
///
[DisplayName("年级")]
public string BeforeGradeName
{
get
{
return IdNameExt.GetDictionaryItem(DictionaryItem.CF_Grade.ToString()).Where(x => x.Value == BeforeGradeID).Select(x => x.Name).FirstOrDefault();
}
}
///
/// 专业ID(Value异动前)
///
[DisplayName("专业ID")]
public int? BeforeStandardID { get; set; }
///
/// 专业代码(异动前)
///
[DisplayName("专业代码")]
public string BeforeStandardCode
{
get
{
var inistStandardCode = IdNameExt.GetDictionaryItem(DictionaryItem.CF_Standard.ToString()).Where(x => x.Value == BeforeStandardID).Select(x => x.Code).FirstOrDefault();
return (inistStandardCode != null ? inistStandardCode.PadLeft(6, '0') : "");
}
}
///
/// 专业名称(异动前)
///
[DisplayName("专业名称")]
public string BeforeStandardName
{
get
{
return IdNameExt.GetDictionaryItem(DictionaryItem.CF_Standard.ToString()).Where(x => x.Value == BeforeStandardID).Select(x => x.Name).FirstOrDefault();
}
}
///
/// 培养层次(异动前)
///
[Display(ResourceType = typeof(EMIS.Resources.DataAnnotations.Label), Name = "EducationID")]
public int? BeforeEducationID { get; set; }
///
/// 培养层次(异动前)
///
[Display(ResourceType = typeof(EMIS.Resources.DataAnnotations.Label), Name = "EducationName")]
public string BeforeEducationName
{
get
{
return IdNameExt.GetDictionaryItem(DictionaryItem.CF_Education.ToString()).Where(x => x.Value == BeforeEducationID).Select(x => x.Name).FirstOrDefault();
}
}
///
/// 学习形式(异动前)
///
[DisplayName("学习形式")]
public int? BeforeLearningformID { get; set; }
///
/// 学习形式(异动前)
///
[DisplayName("学习形式")]
public string BeforeLearningformName
{
get
{
return IdNameExt.GetDictionaryItem(DictionaryItem.CF_Learningform.ToString()).Where(x => x.Value == BeforeLearningformID).Select(x => x.Name).FirstOrDefault();
}
}
///
/// 学制(异动前)
///
[DisplayName("学制")]
public decimal? BeforeLearnSystem { get; set; }
///
/// 班级信息ID(异动前)
///
[Required]
[DisplayName("班级信息ID")]
public Guid? BeforeClassmajorID { get; set; }
///
/// 班级编号(异动前)
///
[DisplayName("班级编号")]
public string BeforeClassmajorNo { get; set; }
///
/// 班级名称(异动前)
///
[DisplayName("班级名称")]
public string BeforeClassmajorName { get; set; }
///
/// 在校状态(异动前)
///
[Required]
[DisplayName("在校状态")]
public int? BeforeInSchoolStatusID { get; set; }
///
/// 在校状态(异动前)
///
[DisplayName("在校状态")]
public string BeforeInSchoolStatusName
{
get
{
return IdNameExt.GetDictionaryItem(DictionaryItem.CF_InschoolStatus.ToString()).Where(x => x.Value == BeforeInSchoolStatusID).Select(x => x.Name).FirstOrDefault();
}
}
///
/// 学籍状态(异动前)
///
[Required]
[DisplayName("学籍状态")]
public int? BeforeStudentStatus { get; set; }
///
/// 学籍状态(异动前)
///
[DisplayName("学籍状态")]
public string BeforeStudentStatusName
{
get
{
return IdNameExt.GetDictionaryItem(DictionaryItem.CF_StudentStatus.ToString()).Where(x => x.Value == BeforeStudentStatus).Select(x => x.Name).FirstOrDefault();
}
}
///
/// 院系所ID(异动后)
///
[Display(ResourceType = typeof(EMIS.Resources.DataAnnotations.Label), Name = "College")]
public Guid? AfterCollegeID { get; set; }
///
/// 院系所代码(异动后)
///
[Display(ResourceType = typeof(EMIS.Resources.DataAnnotations.Label), Name = "CollegeCode")]
public string AfterCollegeNo { get; set; }
///
/// 院系所(异动后)
///
[Display(ResourceType = typeof(EMIS.Resources.DataAnnotations.Label), Name = "College")]
public string AfterCollegeName { get; set; }
///
/// 年级(异动后)
///
[DisplayName("年级")]
public int? AfterGradeID { get; set; }
///
/// 年级(异动后)
///
[DisplayName("年级")]
public string AfterGradeName
{
get
{
return IdNameExt.GetDictionaryItem(DictionaryItem.CF_Grade.ToString()).Where(x => x.Value == AfterGradeID).Select(x => x.Name).FirstOrDefault();
}
}
///
/// 专业ID(Value异动后)
///
[DisplayName("专业ID")]
public int? AfterStandardID { get; set; }
///
/// 专业代码(异动后)
///
[DisplayName("专业代码")]
public string AfterStandardCode
{
get
{
var inistStandardCode = IdNameExt.GetDictionaryItem(DictionaryItem.CF_Standard.ToString()).Where(x => x.Value == AfterStandardID).Select(x => x.Code).FirstOrDefault();
return (inistStandardCode != null ? inistStandardCode.PadLeft(6, '0') : "");
}
}
///
/// 专业名称(异动后)
///
[DisplayName("专业名称")]
public string AfterStandardName
{
get
{
return IdNameExt.GetDictionaryItem(DictionaryItem.CF_Standard.ToString()).Where(x => x.Value == AfterStandardID).Select(x => x.Name).FirstOrDefault();
}
}
///
/// 培养层次(异动后)
///
[Display(ResourceType = typeof(EMIS.Resources.DataAnnotations.Label), Name = "EducationID")]
public int? AfterEducationID { get; set; }
///
/// 培养层次(异动后)
///
[Display(ResourceType = typeof(EMIS.Resources.DataAnnotations.Label), Name = "EducationName")]
public string AfterEducationName
{
get
{
return IdNameExt.GetDictionaryItem(DictionaryItem.CF_Education.ToString()).Where(x => x.Value == AfterEducationID).Select(x => x.Name).FirstOrDefault();
}
}
///
/// 学习形式(异动后)
///
[DisplayName("学习形式")]
public int? AfterLearningformID { get; set; }
///
/// 学习形式(异动后)
///
[DisplayName("学习形式")]
public string AfterLearningformName
{
get
{
return IdNameExt.GetDictionaryItem(DictionaryItem.CF_Learningform.ToString()).Where(x => x.Value == AfterLearningformID).Select(x => x.Name).FirstOrDefault();
}
}
///
/// 学制(异动后)
///
[DisplayName("学制")]
public decimal? AfterLearnSystem { get; set; }
///
/// 班级信息ID(异动后)
///
[Required]
[DisplayName("班级信息ID")]
public Guid? AfterClassmajorID { get; set; }
///
/// 班级编号(异动后)
///
[DisplayName("班级编号")]
public string AfterClassmajorNo { get; set; }
///
/// 班级名称(异动后)
///
[DisplayName("班级名称")]
public string AfterClassmajorName { get; set; }
///
/// 在校状态(异动后)
///
[Required]
[DisplayName("在校状态")]
public int? AfterInSchoolStatusID { get; set; }
///
/// 在校状态(异动后)
///
[DisplayName("在校状态")]
public string AfterInSchoolStatusName
{
get
{
return IdNameExt.GetDictionaryItem(DictionaryItem.CF_InschoolStatus.ToString()).Where(x => x.Value == AfterInSchoolStatusID).Select(x => x.Name).FirstOrDefault();
}
}
///
/// 学籍状态(异动后)
///
[Required]
[DisplayName("学籍状态")]
public int? AfterStudentStatus { get; set; }
///
/// 学籍状态(异动后)
///
[DisplayName("学籍状态")]
public string AfterStudentStatusName
{
get
{
return IdNameExt.GetDictionaryItem(DictionaryItem.CF_StudentStatus.ToString()).Where(x => x.Value == AfterStudentStatus).Select(x => x.Name).FirstOrDefault();
}
}
///
/// 返校学期ID
///
[DisplayName("返校学期ID")]
public Guid? ReturnSchoolyearID { get; set; }
///
/// 返校学期对应的Value值
///
[DisplayName("StartSchoolyearValue")]
public int? ReturnSchoolyearValue { get; set; }
///
/// 返校学期
///
[DisplayName("返校学期")]
public string ReturnSchoolyearCode { get; set; }
///
/// 异动渠道
///
[Required]
[DisplayName("异动渠道")]
public int? ChangeApplyTypeID { get; set; }
///
/// 异动渠道
///
[DisplayName("异动渠道")]
public string ChangeApplyTypeName
{
get
{
return IdNameExt.GetDictionaryItem(DictionaryItem.CF_ChangeApplyType.ToString()).Where(x => x.Value == ChangeApplyTypeID).Select(x => x.Name).FirstOrDefault();
}
}
///
/// 异动原因
///
[Required]
[DisplayName("异动原因")]
public int? ChangeReasonID { get; set; }
///
/// 异动原因
///
[DisplayName("异动原因")]
public string ChangeReasonName
{
get
{
return IdNameExt.GetDictionaryItem(DictionaryItem.CF_ChangeReason.ToString()).Where(x => x.Value == ChangeReasonID).Select(x => x.Name).FirstOrDefault();
}
}
///
/// 异动日期
///
[Required]
[DisplayName("异动日期")]
public DateTime? ChangeDate { get; set; }
///
/// 申请说明
///
[Required]
[DisplayName("申请说明")]
public string Description { get; set; }
///
/// 审核状态
///
[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 CreateUserName { get; set; }
///
/// 创建时间
///
[DisplayName("创建时间")]
public DateTime? CreateTime { get; set; }
///
/// 修改人
///
[DisplayName("修改人")]
public Guid? ModifyUserID { get; set; }
///
/// 修改时间
///
[DisplayName("修改时间")]
public DateTime? ModifyTime { get; set; }
}
}