PhoneQuestionDto.cs 686 B

12345678910111213141516171819202122232425262728
  1. using System;
  2. using Abp.AutoMapper;
  3. using Abp.Application.Services.Dto;
  4. namespace WeApp.BasicInfo.PhoneQuestion.Dto
  5. {
  6. /// <summary>
  7. /// 电话提问维护
  8. /// </summary>
  9. [AutoMapTo(typeof(PhoneQuestionInfo)),AutoMapFrom(typeof(PhoneQuestionInfo))]
  10. public class PhoneQuestionDto: EntityDto<string>
  11. {
  12. /// <summary>
  13. /// 简称
  14. /// </summary>
  15. public string Name { get; set; }
  16. /// <summary>
  17. /// 内容
  18. /// </summary>
  19. public string Content { get; set; }
  20. public int Type { get; set; }
  21. /// <summary>
  22. /// 内容
  23. /// </summary>
  24. public string Tag { get; set; }
  25. }
  26. }