SysHelpCreateDto.cs 987 B

12345678910111213141516171819202122232425262728293031323334
  1. using System;
  2. using Abp.AutoMapper;
  3. using System.ComponentModel.DataAnnotations;
  4. using ShwasherSys.BaseSysInfo;
  5. namespace ShwasherSys.BaseSysInfo.Help.Dto
  6. {
  7. [AutoMapTo(typeof(SysHelp))]
  8. public class SysHelpCreateDto
  9. {
  10. /// <summary>
  11. /// 分类
  12. /// </summary>
  13. [StringLength(SysHelp.ClassificationMaxLength)]
  14. public string Classification { get; set; }
  15. [Required]
  16. [StringLength(SysHelp.HelpTitleMaxLength)]
  17. public string HelpTitle { get; set; }
  18. /// <summary>
  19. /// 关键字
  20. /// </summary>
  21. [StringLength(SysHelp.HelpKeyWordsMaxLength)]
  22. public string HelpKeyWords { get; set; }
  23. /// <summary>
  24. /// 内容
  25. /// </summary>
  26. public string HelpContent { get; set; }
  27. public int Sequence { get; set; }
  28. /*public DateTime? TimeCreated { get; set; }
  29. public DateTime? TimeLastMod { get; set; }
  30. public string UserIDLastMod { get; set; }*/
  31. }
  32. }