SysHelpDto.cs 930 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. using System.ComponentModel.DataAnnotations;
  2. using Abp.AutoMapper;
  3. using VberZero.AppService.Base.Dto;
  4. using VberZero.BaseSystem;
  5. namespace VberZero.AppService.Helps.Dto;
  6. [AutoMapFrom(typeof(SysHelp))]
  7. public class SysHelpDto : VzEntityDto<int>
  8. {
  9. /// <summary>
  10. /// 分类
  11. /// </summary>
  12. public VzDefinition.HelpType HelpType { get; set; }
  13. [Required]
  14. public string Title { get; set; }
  15. /// <summary>
  16. /// 关键字
  17. /// </summary>
  18. public string KeyWords { get; set; }
  19. /// <summary>
  20. /// 内容
  21. /// </summary>
  22. public string Content { get; set; }
  23. /// <summary>
  24. /// 菜单名称(预留)
  25. /// </summary>
  26. public int FunctionNo { get; set; }
  27. public string FunctionDisplayName { get; set; }
  28. /// <summary>
  29. /// 菜单权限ID(预留)
  30. /// </summary>
  31. public string PermissionName { get; set; }
  32. public int Sequence { get; set; }
  33. }