123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.ComponentModel;
- namespace EMIS.ViewModel.Students
- {
- public class ExaminationApplyView
- {
- public Guid ExaminationSubjectID { get; set; }
- public string Name { get; set; }
- public DateTime? StartDate { get; set; }
- public DateTime? EndDate { get; set; }
- public DateTime? ExaminationDate { get; set; }
- public int? PeopleNumLimit { get; set; }
- public decimal? Cost { get; set; }
- public string Remark { get; set; }
- public int RegisterNum { get; set; }
- public int BKCS { get; set; }
- [DisplayName("是否已报考")]
- public bool IsRister { get; set; }
- [DisplayName("是否已报考")]
- public string IsRisterName
- {
- get { return IsRister == true ? "是" : "否"; }
-
- }
- public int? SchoolYearNum { get; set; }
- }
- public class ExaminationRegisView
- {
- public Guid ExaminationRegistrationID { get; set; }
- public Guid ExaminationSubjectID { get; set; }
- public string Name { get; set; }
- public DateTime? StartDate { get; set; }
- public DateTime? EndDate { get; set; }
- public DateTime? ExaminationDate { get; set; }
- public int? PeopleNumLimit { get; set; }
- public decimal? Cost { get; set; }
- public string Remark { get; set; }
- public string CertificatesType { get; set; }
- public int Jishu { get; set; }
- public string IDNumber { get; set; }
- public int? SchoolYearNum { get; set; }
- [DisplayName("报名学年学期")]
- public Guid? SchoolYearID { get; set; }
- public string SchoolYearCode { get; set; }
- [DisplayName("考试学年学期")]
- public Guid? ExaminationSchoolYearID { get; set; }
- public string ExaminationSchoolYearCode { get; set; }
- }
- }
|