TopicMapping.cs 489 B

123456789101112131415161718192021222324
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. using AutoMapper;
  5. using GxPress.Entity;
  6. using GxPress.Entity.Topic;
  7. using GxPress.Result.App.Topic;
  8. using GxPress.Result.User;
  9. namespace GxPress.Mappings
  10. {
  11. class TopicMapping : Profile
  12. {
  13. public TopicMapping()
  14. {
  15. CreateMap<Topic, TopicListPageResult>();
  16. CreateMap<Topic, TopicDetailResult>();
  17. CreateMap<TopicAnalyze, TopicPraisePageResult>();
  18. }
  19. }
  20. }