using System; using Abp.AutoMapper; using Abp.Application.Services.Dto; using ShwasherSys.BaseSysInfo; namespace ShwasherSys.BaseSysInfo.Help.Dto { [AutoMapTo(typeof(SysHelp)),AutoMapFrom(typeof(SysHelp))] public class SysHelpDto: EntityDto { /// /// 分类 /// public string Classification { get; set; } public string HelpTitle { get; set; } /// /// 关键字 /// public string HelpKeyWords { get; set; } /// /// 内容 /// public string HelpContent { get; set; } public int Sequence { get; set; } public DateTime? TimeCreated { get; set; } public DateTime? TimeLastMod { get; set; } public string UserIDLastMod { get; set; } public string ClassificationShow { get; set; } } }