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 { /// /// 分类 /// public VzDefinition.HelpType HelpType { get; set; } [Required] [StringLength(SysHelp.TitleMaxLength)] public string Title { get; set; } /// /// 关键字 /// [StringLength(SysHelp.KeyWordsMaxLength)] public string KeyWords { get; set; } /// /// 内容 /// [StringLength(SysHelp.ContentMaxLength)] public string Content { get; set; } /// /// 菜单名称(预留) /// public int? FunctionNo { get; set; } /// /// 菜单权限ID(预留) /// [StringLength(SysFunction.PermissionNameMaxLength)] public string PermissionName { get; set; } public int Sequence { get; set; } }