KnowledgeDto.cs 638 B

12345678910111213141516171819202122232425
  1. using System;
  2. using System.Collections.Generic;
  3. using Abp.AutoMapper;
  4. using Abp.Application.Services.Dto;
  5. namespace WePlatform.WeLib.Knowledge.Dto
  6. {
  7. /// <summary>
  8. /// 知识信息引导库管理
  9. /// </summary>
  10. [AutoMapTo(typeof(KnowledgeInfo)),AutoMapFrom(typeof(KnowledgeInfo))]
  11. public class KnowledgeDto: EntityDto<string>
  12. {
  13. /// <summary>
  14. /// 知识名称
  15. /// </summary>
  16. public string Name { get; set; }
  17. /// <summary>
  18. /// 知识详情
  19. /// </summary>
  20. public string Description { get; set; }
  21. public List<string> Plans { get; set; }
  22. }
  23. }