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