StudentTipDto.cs 616 B

123456789101112131415161718192021222324252627
  1. using Abp.Application.Services.Dto;
  2. using Abp.AutoMapper;
  3. namespace WeApp.BasicInfo.StudentTip.Dto
  4. {
  5. /// <summary>
  6. /// 学员提示信息
  7. /// </summary>
  8. [AutoMapTo(typeof(StudentTipInfo)), AutoMapFrom(typeof(StudentTipInfo))]
  9. public class StudentTipDto : EntityDto<string>
  10. {
  11. /// <summary>
  12. /// 简称
  13. /// </summary>
  14. public string Name { get; set; }
  15. /// <summary>
  16. /// 角色
  17. /// </summary>
  18. public string RoleName { get; set; }
  19. /// <summary>
  20. /// 内容
  21. /// </summary>
  22. public string Content { get; set; }
  23. }
  24. }