StudentHelpDto.cs 524 B

12345678910111213141516171819202122
  1. using Abp.Application.Services.Dto;
  2. using Abp.AutoMapper;
  3. namespace WeApp.BasicInfo.StudentHelp.Dto
  4. {
  5. /// <summary>
  6. /// 学员提示信息
  7. /// </summary>
  8. [AutoMapTo(typeof(StudentHelpInfo)), AutoMapFrom(typeof(StudentHelpInfo))]
  9. public class StudentHelpDto : EntityDto<string>
  10. {
  11. /// <summary>
  12. /// 简称
  13. /// </summary>
  14. public string HelpName { get; set; }
  15. /// <summary>
  16. /// 内容
  17. /// </summary>
  18. public string HelpContent { get; set; }
  19. }
  20. }