ProjectScoreGenerateScoreView.cs 701 B

123456789101112131415161718192021222324252627282930
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace EMIS.ViewModel.ScoreManage
  6. {
  7. public class ProjectScoreGenerateScoreView
  8. {
  9. public Guid ExaminationScoreID { get; set; }
  10. public Guid? ExaminationProjectID { get; set; }
  11. public Guid? UserID { get; set; }
  12. public int? ExaminationSubjectID { get; set; }
  13. public decimal? Score { get; set; }
  14. public bool? IsResit { get; set; }
  15. public DateTime? Expire { get; set; }
  16. public DateTime? BatchStartDate { get; set; }
  17. public Guid? ExaminationBatchProjectID { get; set; }
  18. public Guid? SchoolYearID { get; set; }
  19. }
  20. }