ExaminationNoticeSettingView.cs 585 B

12345678910111213141516171819202122232425
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.ComponentModel.DataAnnotations;
  6. using System.ComponentModel;
  7. namespace EMIS.ViewModel.ExaminationManage
  8. {
  9. public class ExaminationNoticeSettingView
  10. {
  11. /// <summary>
  12. /// 主键ID
  13. /// </summary>
  14. public Guid ParameterID { get; set; }
  15. [DisplayName("注意事项")]
  16. public string Notice { get; set; }
  17. /// <summary>
  18. /// 参数类型
  19. /// </summary>
  20. public int? ParameterTypeID { get; set; }
  21. }
  22. }