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; }
}
}