123456789101112131415161718192021222324252627282930 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace EMIS.ViewModel.ScoreManage
- {
- public class ProjectScoreGenerateScoreView
- {
- public Guid ExaminationScoreID { get; set; }
- public Guid? ExaminationProjectID { get; set; }
- public Guid? UserID { get; set; }
- public int? ExaminationSubjectID { get; set; }
- public decimal? Score { get; set; }
- public bool? IsResit { get; set; }
- public DateTime? Expire { get; set; }
- public DateTime? BatchStartDate { get; set; }
- public Guid? ExaminationBatchProjectID { get; set; }
- public Guid? SchoolYearID { get; set; }
- }
- }
|