| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- using System.ComponentModel.DataAnnotations;
- using Abp.AutoMapper;
- using VberZero.AppService.Base.Dto;
- using VberZero.BaseSystem;
- namespace VberZero.AppService.Helps.Dto;
- [AutoMapFrom(typeof(SysHelp))]
- public class SysHelpDto : VzEntityDto<int>
- {
- /// <summary>
- /// 分类
- /// </summary>
- public VzDefinition.HelpType HelpType { get; set; }
- [Required]
- public string Title { get; set; }
- /// <summary>
- /// 关键字
- /// </summary>
- public string KeyWords { get; set; }
- /// <summary>
- /// 内容
- /// </summary>
- public string Content { get; set; }
- /// <summary>
- /// 菜单名称(预留)
- /// </summary>
- public int FunctionNo { get; set; }
- public string FunctionDisplayName { get; set; }
- /// <summary>
- /// 菜单权限ID(预留)
- /// </summary>
- public string PermissionName { get; set; }
- public int Sequence { get; set; }
- }
|