using System.ComponentModel.DataAnnotations; using Abp.Application.Services.Dto; using Abp.AutoMapper; using WePlatform.BaseInfo; namespace WePlatform.BaseSystem.Help.Dto { [AutoMapTo(typeof(SysHelp)), AutoMapFrom(typeof(SysHelp))] public class SysHelpDto : EntityDto { /// /// 分类 /// public string Classification { get; set; } [Required] public string HelpTitle { get; set; } /// /// 关键字 /// public string HelpKeyWords { get; set; } /// /// 内容 /// public string HelpContent { get; set; } /// /// 菜单名称(预留) /// public string FunctionNo { get; set; } /// /// 菜单权限ID(预留) /// public string PermissionName { get; set; } public int Sequence { get; set; } } }