SysHelpDto.cs 878 B

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