StudentHelpCreateDto.cs 652 B

12345678910111213141516171819202122232425262728
  1. using Abp.AutoMapper;
  2. using IwbZero.AppServiceBase;
  3. using System.ComponentModel.DataAnnotations;
  4. namespace WeApp.BasicInfo.StudentHelp.Dto
  5. {
  6. /// <summary>
  7. /// 学员提示信息
  8. /// </summary>
  9. [AutoMapTo(typeof(StudentHelpInfo))]
  10. public class StudentHelpCreateDto : IwbEntityDto
  11. {
  12. /// <summary>
  13. /// 简称
  14. /// </summary>
  15. [StringLength(StudentHelpInfo.NameMaxLength)]
  16. public string HelpName { get; set; }
  17. /// <summary>
  18. /// 内容
  19. /// </summary>
  20. [StringLength(StudentHelpInfo.ContentMaxLength)]
  21. public string HelpContent { get; set; }
  22. }
  23. }