ExaminationProjectSubjectView.cs 567 B

1234567891011121314151617181920212223
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.ComponentModel;
  6. namespace EMIS.ViewModel
  7. {
  8. public class ExaminationProjectSubjectView
  9. {
  10. [DisplayName("主键ID")]
  11. public Guid ExaminationProjectSubjectID { get; set; }
  12. [DisplayName("考试科目")]
  13. public int? ExaminationSubjectID { get; set; }
  14. public string SubjectCode { get; set; }
  15. public string ExaminationSubject { get; set; }
  16. public Guid? ExaminationProjectID { get; set; }
  17. }
  18. }