12345678910111213141516171819202122232425 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.ComponentModel.DataAnnotations;
- using System.ComponentModel;
- namespace EMIS.ViewModel.ExaminationManage
- {
- public class ExaminationNoticeSettingView
- {
- /// <summary>
- /// 主键ID
- /// </summary>
- public Guid ParameterID { get; set; }
- [DisplayName("注意事项")]
- public string Notice { get; set; }
- /// <summary>
- /// 参数类型
- /// </summary>
- public int? ParameterTypeID { get; set; }
- }
- }
|