using Abp.Application.Services.Dto; using Abp.AutoMapper; namespace WeApp.BasicInfo.StudentHelp.Dto { /// /// 学员提示信息 /// [AutoMapTo(typeof(StudentHelpInfo)), AutoMapFrom(typeof(StudentHelpInfo))] public class StudentHelpDto : EntityDto { /// /// 简称 /// public string HelpName { get; set; } /// /// 内容 /// public string HelpContent { get; set; } } }