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