SysHelpUpdateDto.cs 1.0 KB

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