| 123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- using System.ComponentModel.DataAnnotations;
- using Abp.Application.Services.Dto;
- using Abp.AutoMapper;
- using WeApp.BaseInfo;
- using IwbZero.Authorization.Base.SystemInfo;
- namespace WeApp.BaseSystem.Help.Dto
- {
- [AutoMapTo(typeof(SysHelp))]
- public class SysHelpUpdateDto : EntityDto
- {
- /// <summary>
- /// 分类
- /// </summary>
- [StringLength(SysHelpBase.ClassificationMaxLength)]
- public string Classification { get; set; }
- [Required]
- [StringLength(SysHelpBase.HelpTitleMaxLength)]
- public string HelpTitle { get; set; }
- /// <summary>
- /// 关键字
- /// </summary>
- [StringLength(SysHelpBase.HelpKeyWordsMaxLength)]
- public string HelpKeyWords { get; set; }
- /// <summary>
- /// 内容
- /// </summary>
- [StringLength(SysHelpBase.HelpContentWordsMaxLength)]
- public string HelpContent { get; set; }
- /// <summary>
- /// 菜单名称(预留)
- /// </summary>
- [StringLength(SysFunctionBase.FunctionNoMaxLength)]
- public string FunctionNo { get; set; }
- /// <summary>
- /// 菜单权限ID(预留)
- /// </summary>
- [StringLength(SysFunctionBase.PermissionNameMaxLength)]
- public string PermissionName { get; set; }
- public int Sequence { get; set; }
- }
- }
|