1234567891011121314151617181920212223242526272829303132333435 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.ComponentModel;
- using System.ComponentModel.DataAnnotations;
- namespace EMIS.ViewModel.ScoreManage
- {
- public class SubmitedScoreDetailView : StudentScoreView
- {
-
-
-
- [Required]
- [DisplayName("设定类型")]
- public int? ExaminationTypeID { get; set; }
-
-
-
- [DisplayName("备注")]
- public string Remark { get; set; }
-
-
-
- public string TotalScorePattern { get; set; }
-
-
-
- public string TotalScorePatternError { get; set; }
- }
- }
|