123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902 |
- 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
- {
- /// <summary>
- /// 主键ID
- /// </summary>
- [DisplayName("主键ID")]
- public Guid StudentChangeID { get; set; }
- /// <summary>
- /// 学生信息ID
- /// </summary>
- [Required]
- [DisplayName("学生信息ID")]
- public Guid? UserID { get; set; }
- /// <summary>
- /// 学号
- /// </summary>
- [DisplayName("学号")]
- public string StudentNo { get; set; }
- /// <summary>
- /// 姓名
- /// </summary>
- [DisplayName("姓名")]
- public string Name { get; set; }
- /// <summary>
- /// 性别
- /// </summary>
- [DisplayName("性别")]
- public int? SexID { get; set; }
- /// <summary>
- /// 性别
- /// </summary>
- [DisplayName("性别")]
- public string SexName
- {
- get
- {
- return IdNameExt.GetDictionaryItem(DictionaryItem.CF_Sex.ToString()).Where(x => x.Value == SexID).Select(x => x.Name).FirstOrDefault();
- }
- }
- /// <summary>
- /// 出生日期
- /// </summary>
- [DisplayName("出生日期")]
- [DataType(DataType.Date)]
- public DateTime? BirthDate { get; set; }
- /// <summary>
- /// 民族
- /// </summary>
- [DisplayName("民族")]
- public int? NationID { get; set; }
- /// <summary>
- /// 民族
- /// </summary>
- [DisplayName("民族")]
- public string NationName
- {
- get
- {
- return IdNameExt.GetDictionaryItem(DictionaryItem.CF_Nation.ToString()).Where(x => x.Value == NationID).Select(x => x.Name).FirstOrDefault();
- }
- }
- /// <summary>
- /// 政治面貌
- /// </summary>
- [DisplayName("政治面貌")]
- public int? PoliticsID { get; set; }
- /// <summary>
- /// 政治面貌
- /// </summary>
- [DisplayName("政治面貌")]
- public string PoliticsName
- {
- get
- {
- return IdNameExt.GetDictionaryItem(DictionaryItem.CF_Politics.ToString()).Where(x => x.Value == PoliticsID).Select(x => x.Name).FirstOrDefault();
- }
- }
- /// <summary>
- /// 在校状态
- /// </summary>
- [DisplayName("在校状态")]
- public int? InSchoolStatusID { get; set; }
- /// <summary>
- /// 在校状态
- /// </summary>
- [DisplayName("在校状态")]
- public string InSchoolStatusName
- {
- get
- {
- return IdNameExt.GetDictionaryItem(DictionaryItem.CF_InschoolStatus.ToString()).Where(x => x.Value == InSchoolStatusID).Select(x => x.Name).FirstOrDefault();
- }
- }
- /// <summary>
- /// 学籍状态
- /// </summary>
- [DisplayName("学籍状态")]
- public int? StudentStatus { get; set; }
- /// <summary>
- /// 学籍状态
- /// </summary>
- [DisplayName("学籍状态")]
- public string StudentStatusName
- {
- get
- {
- return IdNameExt.GetDictionaryItem(DictionaryItem.CF_StudentStatus.ToString()).Where(x => x.Value == StudentStatus).Select(x => x.Name).FirstOrDefault();
- }
- }
- /// <summary>
- /// 年级
- /// </summary>
- [DisplayName("年级")]
- public int? GradeID { get; set; }
- /// <summary>
- /// 年级
- /// </summary>
- [DisplayName("年级")]
- public string GradeName
- {
- get
- {
- return IdNameExt.GetDictionaryItem(DictionaryItem.CF_Grade.ToString()).Where(x => x.Value == GradeID).Select(x => x.Name).FirstOrDefault();
- }
- }
- /// <summary>
- /// 入学学期
- /// </summary>
- [DisplayName("入学学期")]
- public int? SemesterID { get; set; }
- /// <summary>
- /// 入学学期
- /// </summary>
- [DisplayName("入学学期")]
- public string SemesterName
- {
- get
- {
- return IdNameExt.GetDictionaryItem(DictionaryItem.CF_Semester.ToString()).Where(x => x.Value == SemesterID).Select(x => x.Name).FirstOrDefault();
- }
- }
- /// <summary>
- /// 专业ID(Value)
- /// </summary>
- [DisplayName("专业ID(Value)")]
- public int? StandardID { get; set; }
- /// <summary>
- /// 专业代码
- /// </summary>
- [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') : "");
- }
- }
- /// <summary>
- /// 专业名称
- /// </summary>
- [DisplayName("专业名称")]
- public string StandardName
- {
- get
- {
- return IdNameExt.GetDictionaryItem(DictionaryItem.CF_Standard.ToString()).Where(x => x.Value == StandardID).Select(x => x.Name).FirstOrDefault();
- }
- }
- /// <summary>
- /// 培养层次
- /// </summary>
- [Display(ResourceType = typeof(EMIS.Resources.DataAnnotations.Label), Name = "EducationID")]
- public int? EducationID { get; set; }
- /// <summary>
- /// 培养层次
- /// </summary>
- [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();
- }
- }
- /// <summary>
- /// 学习形式
- /// </summary>
- [DisplayName("学习形式")]
- public int? LearningformID { get; set; }
- /// <summary>
- /// 学习形式
- /// </summary>
- [DisplayName("学习形式")]
- public string LearningformName
- {
- get
- {
- return IdNameExt.GetDictionaryItem(DictionaryItem.CF_Learningform.ToString()).Where(x => x.Value == LearningformID).Select(x => x.Name).FirstOrDefault();
- }
- }
- /// <summary>
- /// 学制
- /// </summary>
- [DisplayName("学制")]
- public decimal? LearnSystem { get; set; }
- /// <summary>
- /// 班序
- /// </summary>
- [DisplayName("班序")]
- public int? ClassNum { get; set; }
- /// <summary>
- /// 班级信息ID
- /// </summary>
- [DisplayName("班级信息ID")]
- public Guid? ClassmajorID { get; set; }
- /// <summary>
- /// 班级编号
- /// </summary>
- [DisplayName("班级编号")]
- public string ClassmajorNo { get; set; }
- /// <summary>
- /// 班级名称
- /// </summary>
- [DisplayName("班级名称")]
- public string ClassmajorName { get; set; }
- /// <summary>
- /// 年级专业ID
- /// </summary>
- [DisplayName("年级专业ID")]
- public Guid? GrademajorID { get; set; }
- /// <summary>
- /// 年级专业编号
- /// </summary>
- [DisplayName("年级专业编号")]
- public string GrademajorCode { get; set; }
- /// <summary>
- /// 年级专业名称
- /// </summary>
- [DisplayName("年级专业名称")]
- public string GrademajorName { get; set; }
- /// <summary>
- /// 院系专业ID
- /// </summary>
- [DisplayName("院系专业ID")]
- public Guid? FacultymajorID { get; set; }
- /// <summary>
- /// 院系专业编号
- /// </summary>
- [DisplayName("院系专业编号")]
- public string FacultymajorCode { get; set; }
- /// <summary>
- /// 院系专业名称
- /// </summary>
- [DisplayName("院系专业名称")]
- public string FacultymajorName { get; set; }
- /// <summary>
- /// 院系所ID
- /// </summary>
- [Display(ResourceType = typeof(EMIS.Resources.DataAnnotations.Label), Name = "College")]
- public Guid? CollegeID { get; set; }
- /// <summary>
- /// 院系所代码
- /// </summary>
- [Display(ResourceType = typeof(EMIS.Resources.DataAnnotations.Label), Name = "CollegeCode")]
- public string CollegeNo { get; set; }
- /// <summary>
- /// 院系所
- /// </summary>
- [Display(ResourceType = typeof(EMIS.Resources.DataAnnotations.Label), Name = "College")]
- public string CollegeName { get; set; }
- /// <summary>
- /// 校区ID
- /// </summary>
- [Display(ResourceType = typeof(EMIS.Resources.DataAnnotations.Label), Name = "Campus")]
- public Guid? CampusID { get; set; }
- /// <summary>
- /// 校区代码
- /// </summary>
- [Display(ResourceType = typeof(EMIS.Resources.DataAnnotations.Label), Name = "CampusCode")]
- public string CampusCode { get; set; }
- /// <summary>
- /// 校区名称
- /// </summary>
- [Display(ResourceType = typeof(EMIS.Resources.DataAnnotations.Label), Name = "Campus")]
- public string CampusName { get; set; }
- /// <summary>
- /// 入学学年学期ID
- /// </summary>
- [DisplayName("入学学年学期ID")]
- public Guid? StartSchoolyearID { get; set; }
- /// <summary>
- /// 入学学年学期对应的Value值
- /// </summary>
- [DisplayName("StartSchoolyearValue")]
- public int? StartSchoolyearValue { get; set; }
- /// <summary>
- /// 入学学年学期
- /// </summary>
- [DisplayName("入学学年学期")]
- public string StartSchoolyearCode { get; set; }
- /// <summary>
- /// 异动学期ID
- /// </summary>
- [Required]
- [DisplayName("异动学期ID")]
- public Guid? SchoolyearID { get; set; }
- /// <summary>
- /// 异动学期对应的Value值
- /// </summary>
- [DisplayName("SchoolyearValue")]
- public int? SchoolyearValue { get; set; }
- /// <summary>
- /// 异动学期
- /// </summary>
- [DisplayName("异动学期")]
- public string SchoolyearCode { get; set; }
- /// <summary>
- /// 毕业学期
- /// </summary>
- [DisplayName("毕业学期")]
- public Guid? GraduateSchoolyearID { get; set; }
- /// <summary>
- /// 毕业学期Value
- /// </summary>
- [DisplayName("GraduateSchoolyearValue")]
- public int? GraduateSchoolyearValue { get; set; }
- /// <summary>
- /// 毕业学期
- /// </summary>
- [DisplayName("毕业学期")]
- public string GraduateSchoolyearCode { get; set; }
- /// <summary>
- /// 注册状态
- /// </summary>
- [DisplayName("注册状态")]
- public int? ReportStatus { get; set; }
- /// <summary>
- /// 注册状态
- /// </summary>
- [DisplayName("注册状态")]
- public string ReportStatusName
- {
- get
- {
- return IdNameExt.GetDictionaryItem(DictionaryItem.CF_ReportStatus.ToString()).Where(x => x.Value == ReportStatus).Select(x => x.Name).FirstOrDefault();
- }
- }
- /// <summary>
- /// 异动类型
- /// </summary>
- [Required]
- [DisplayName("异动类型")]
- public int? ChangeTypeID { get; set; }
- /// <summary>
- /// 异动类型
- /// </summary>
- [DisplayName("异动类型")]
- public string ChangeTypeName
- {
- get
- {
- return IdNameExt.GetDictionaryItem(DictionaryItem.CF_ChangeType.ToString()).Where(x => x.Value == ChangeTypeID).Select(x => x.Name).FirstOrDefault();
- }
- }
- /// <summary>
- /// 院系所ID(异动前)
- /// </summary>
- [Display(ResourceType = typeof(EMIS.Resources.DataAnnotations.Label), Name = "College")]
- public Guid? BeforeCollegeID { get; set; }
- /// <summary>
- /// 院系所代码(异动前)
- /// </summary>
- [Display(ResourceType = typeof(EMIS.Resources.DataAnnotations.Label), Name = "CollegeCode")]
- public string BeforeCollegeNo { get; set; }
- /// <summary>
- /// 院系所(异动前)
- /// </summary>
- [Display(ResourceType = typeof(EMIS.Resources.DataAnnotations.Label), Name = "College")]
- public string BeforeCollegeName { get; set; }
- /// <summary>
- /// 年级(异动前)
- /// </summary>
- [DisplayName("年级(异动前)")]
- public int? BeforeGradeID { get; set; }
- /// <summary>
- /// 年级(异动前)
- /// </summary>
- [DisplayName("年级")]
- public string BeforeGradeName
- {
- get
- {
- return IdNameExt.GetDictionaryItem(DictionaryItem.CF_Grade.ToString()).Where(x => x.Value == BeforeGradeID).Select(x => x.Name).FirstOrDefault();
- }
- }
- /// <summary>
- /// 专业ID(Value异动前)
- /// </summary>
- [DisplayName("专业ID")]
- public int? BeforeStandardID { get; set; }
- /// <summary>
- /// 专业代码(异动前)
- /// </summary>
- [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') : "");
- }
- }
- /// <summary>
- /// 专业名称(异动前)
- /// </summary>
- [DisplayName("专业名称")]
- public string BeforeStandardName
- {
- get
- {
- return IdNameExt.GetDictionaryItem(DictionaryItem.CF_Standard.ToString()).Where(x => x.Value == BeforeStandardID).Select(x => x.Name).FirstOrDefault();
- }
- }
- /// <summary>
- /// 培养层次(异动前)
- /// </summary>
- [Display(ResourceType = typeof(EMIS.Resources.DataAnnotations.Label), Name = "EducationID")]
- public int? BeforeEducationID { get; set; }
- /// <summary>
- /// 培养层次(异动前)
- /// </summary>
- [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();
- }
- }
- /// <summary>
- /// 学习形式(异动前)
- /// </summary>
- [DisplayName("学习形式")]
- public int? BeforeLearningformID { get; set; }
- /// <summary>
- /// 学习形式(异动前)
- /// </summary>
- [DisplayName("学习形式")]
- public string BeforeLearningformName
- {
- get
- {
- return IdNameExt.GetDictionaryItem(DictionaryItem.CF_Learningform.ToString()).Where(x => x.Value == BeforeLearningformID).Select(x => x.Name).FirstOrDefault();
- }
- }
- /// <summary>
- /// 学制(异动前)
- /// </summary>
- [DisplayName("学制")]
- public decimal? BeforeLearnSystem { get; set; }
- /// <summary>
- /// 班级信息ID(异动前)
- /// </summary>
- [Required]
- [DisplayName("班级信息ID")]
- public Guid? BeforeClassmajorID { get; set; }
- /// <summary>
- /// 班级编号(异动前)
- /// </summary>
- [DisplayName("班级编号")]
- public string BeforeClassmajorNo { get; set; }
- /// <summary>
- /// 班级名称(异动前)
- /// </summary>
- [DisplayName("班级名称")]
- public string BeforeClassmajorName { get; set; }
- /// <summary>
- /// 在校状态(异动前)
- /// </summary>
- [Required]
- [DisplayName("在校状态")]
- public int? BeforeInSchoolStatusID { get; set; }
- /// <summary>
- /// 在校状态(异动前)
- /// </summary>
- [DisplayName("在校状态")]
- public string BeforeInSchoolStatusName
- {
- get
- {
- return IdNameExt.GetDictionaryItem(DictionaryItem.CF_InschoolStatus.ToString()).Where(x => x.Value == BeforeInSchoolStatusID).Select(x => x.Name).FirstOrDefault();
- }
- }
- /// <summary>
- /// 学籍状态(异动前)
- /// </summary>
- [Required]
- [DisplayName("学籍状态")]
- public int? BeforeStudentStatus { get; set; }
- /// <summary>
- /// 学籍状态(异动前)
- /// </summary>
- [DisplayName("学籍状态")]
- public string BeforeStudentStatusName
- {
- get
- {
- return IdNameExt.GetDictionaryItem(DictionaryItem.CF_StudentStatus.ToString()).Where(x => x.Value == BeforeStudentStatus).Select(x => x.Name).FirstOrDefault();
- }
- }
- /// <summary>
- /// 院系所ID(异动后)
- /// </summary>
- [Display(ResourceType = typeof(EMIS.Resources.DataAnnotations.Label), Name = "College")]
- public Guid? AfterCollegeID { get; set; }
- /// <summary>
- /// 院系所代码(异动后)
- /// </summary>
- [Display(ResourceType = typeof(EMIS.Resources.DataAnnotations.Label), Name = "CollegeCode")]
- public string AfterCollegeNo { get; set; }
- /// <summary>
- /// 院系所(异动后)
- /// </summary>
- [Display(ResourceType = typeof(EMIS.Resources.DataAnnotations.Label), Name = "College")]
- public string AfterCollegeName { get; set; }
- /// <summary>
- /// 年级(异动后)
- /// </summary>
- [DisplayName("年级")]
- public int? AfterGradeID { get; set; }
- /// <summary>
- /// 年级(异动后)
- /// </summary>
- [DisplayName("年级")]
- public string AfterGradeName
- {
- get
- {
- return IdNameExt.GetDictionaryItem(DictionaryItem.CF_Grade.ToString()).Where(x => x.Value == AfterGradeID).Select(x => x.Name).FirstOrDefault();
- }
- }
- /// <summary>
- /// 专业ID(Value异动后)
- /// </summary>
- [DisplayName("专业ID")]
- public int? AfterStandardID { get; set; }
- /// <summary>
- /// 专业代码(异动后)
- /// </summary>
- [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') : "");
- }
- }
- /// <summary>
- /// 专业名称(异动后)
- /// </summary>
- [DisplayName("专业名称")]
- public string AfterStandardName
- {
- get
- {
- return IdNameExt.GetDictionaryItem(DictionaryItem.CF_Standard.ToString()).Where(x => x.Value == AfterStandardID).Select(x => x.Name).FirstOrDefault();
- }
- }
- /// <summary>
- /// 培养层次(异动后)
- /// </summary>
- [Display(ResourceType = typeof(EMIS.Resources.DataAnnotations.Label), Name = "EducationID")]
- public int? AfterEducationID { get; set; }
- /// <summary>
- /// 培养层次(异动后)
- /// </summary>
- [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();
- }
- }
- /// <summary>
- /// 学习形式(异动后)
- /// </summary>
- [DisplayName("学习形式")]
- public int? AfterLearningformID { get; set; }
- /// <summary>
- /// 学习形式(异动后)
- /// </summary>
- [DisplayName("学习形式")]
- public string AfterLearningformName
- {
- get
- {
- return IdNameExt.GetDictionaryItem(DictionaryItem.CF_Learningform.ToString()).Where(x => x.Value == AfterLearningformID).Select(x => x.Name).FirstOrDefault();
- }
- }
- /// <summary>
- /// 学制(异动后)
- /// </summary>
- [DisplayName("学制")]
- public decimal? AfterLearnSystem { get; set; }
- /// <summary>
- /// 班级信息ID(异动后)
- /// </summary>
- [Required]
- [DisplayName("班级信息ID")]
- public Guid? AfterClassmajorID { get; set; }
- /// <summary>
- /// 班级编号(异动后)
- /// </summary>
- [DisplayName("班级编号")]
- public string AfterClassmajorNo { get; set; }
- /// <summary>
- /// 班级名称(异动后)
- /// </summary>
- [DisplayName("班级名称")]
- public string AfterClassmajorName { get; set; }
- /// <summary>
- /// 在校状态(异动后)
- /// </summary>
- [Required]
- [DisplayName("在校状态")]
- public int? AfterInSchoolStatusID { get; set; }
- /// <summary>
- /// 在校状态(异动后)
- /// </summary>
- [DisplayName("在校状态")]
- public string AfterInSchoolStatusName
- {
- get
- {
- return IdNameExt.GetDictionaryItem(DictionaryItem.CF_InschoolStatus.ToString()).Where(x => x.Value == AfterInSchoolStatusID).Select(x => x.Name).FirstOrDefault();
- }
- }
- /// <summary>
- /// 学籍状态(异动后)
- /// </summary>
- [Required]
- [DisplayName("学籍状态")]
- public int? AfterStudentStatus { get; set; }
- /// <summary>
- /// 学籍状态(异动后)
- /// </summary>
- [DisplayName("学籍状态")]
- public string AfterStudentStatusName
- {
- get
- {
- return IdNameExt.GetDictionaryItem(DictionaryItem.CF_StudentStatus.ToString()).Where(x => x.Value == AfterStudentStatus).Select(x => x.Name).FirstOrDefault();
- }
- }
- /// <summary>
- /// 返校学期ID
- /// </summary>
- [DisplayName("返校学期ID")]
- public Guid? ReturnSchoolyearID { get; set; }
- /// <summary>
- /// 返校学期对应的Value值
- /// </summary>
- [DisplayName("StartSchoolyearValue")]
- public int? ReturnSchoolyearValue { get; set; }
- /// <summary>
- /// 返校学期
- /// </summary>
- [DisplayName("返校学期")]
- public string ReturnSchoolyearCode { get; set; }
- /// <summary>
- /// 异动渠道
- /// </summary>
- [Required]
- [DisplayName("异动渠道")]
- public int? ChangeApplyTypeID { get; set; }
- /// <summary>
- /// 异动渠道
- /// </summary>
- [DisplayName("异动渠道")]
- public string ChangeApplyTypeName
- {
- get
- {
- return IdNameExt.GetDictionaryItem(DictionaryItem.CF_ChangeApplyType.ToString()).Where(x => x.Value == ChangeApplyTypeID).Select(x => x.Name).FirstOrDefault();
- }
- }
- /// <summary>
- /// 异动原因
- /// </summary>
- [Required]
- [DisplayName("异动原因")]
- public int? ChangeReasonID { get; set; }
- /// <summary>
- /// 异动原因
- /// </summary>
- [DisplayName("异动原因")]
- public string ChangeReasonName
- {
- get
- {
- return IdNameExt.GetDictionaryItem(DictionaryItem.CF_ChangeReason.ToString()).Where(x => x.Value == ChangeReasonID).Select(x => x.Name).FirstOrDefault();
- }
- }
- /// <summary>
- /// 异动日期
- /// </summary>
- [Required]
- [DisplayName("异动日期")]
- public DateTime? ChangeDate { get; set; }
- /// <summary>
- /// 申请说明
- /// </summary>
- [Required]
- [DisplayName("申请说明")]
- public string Description { get; set; }
- /// <summary>
- /// 审核状态
- /// </summary>
- [DisplayName("审核状态")]
- public int? ApprovalStatus { get; set; }
- /// <summary>
- /// 审核状态
- /// </summary>
- [DisplayName("审核状态")]
- public string ApprovalStatusName { get; set; }
- /// <summary>
- /// 处理动作
- /// </summary>
- [Required]
- [DisplayName("处理动作")]
- public string Action { get; set; }
- /// <summary>
- /// 处理意见
- /// </summary>
- [DisplayName("处理意见")]
- public string Comment { get; set; }
- /// <summary>
- /// 备注
- /// </summary>
- [DisplayName("备注")]
- public string Remark { get; set; }
- /// <summary>
- /// 状态
- /// </summary>
- [DisplayName("状态")]
- public int? RecordStatus { get; set; }
- /// <summary>
- /// 创建人
- /// </summary>
- [DisplayName("创建人")]
- public Guid? CreateUserID { get; set; }
- /// <summary>
- /// 申请人
- /// </summary>
- [DisplayName("申请人")]
- public string CreateUserName { get; set; }
- /// <summary>
- /// 创建时间
- /// </summary>
- [DisplayName("创建时间")]
- public DateTime? CreateTime { get; set; }
- /// <summary>
- /// 修改人
- /// </summary>
- [DisplayName("修改人")]
- public Guid? ModifyUserID { get; set; }
- /// <summary>
- /// 修改时间
- /// </summary>
- [DisplayName("修改时间")]
- public DateTime? ModifyTime { get; set; }
- }
- }
|