1234567891011121314151617181920212223 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.ComponentModel;
- namespace EMIS.ViewModel
- {
- public class ExaminationProjectSubjectView
- {
- [DisplayName("主键ID")]
- public Guid ExaminationProjectSubjectID { get; set; }
- [DisplayName("考试科目")]
- public int? ExaminationSubjectID { get; set; }
-
- public string SubjectCode { get; set; }
- public string ExaminationSubject { get; set; }
- public Guid? ExaminationProjectID { get; set; }
- }
- }
|