FaqDto.java 699 B

12345678910111213141516171819202122232425262728293031323334353637
  1. package com.qxgmat.dto.request;
  2. import com.nuliji.tools.annotation.Dto;
  3. import com.qxgmat.data.dao.entity.Faq;
  4. @Dto(entity = Faq.class)
  5. public class FaqDto {
  6. private String channel;
  7. private String position;
  8. private String content;
  9. public String getContent() {
  10. return content;
  11. }
  12. public void setContent(String content) {
  13. this.content = content;
  14. }
  15. public String getChannel() {
  16. return channel;
  17. }
  18. public void setChannel(String channel) {
  19. this.channel = channel;
  20. }
  21. public String getPosition() {
  22. return position;
  23. }
  24. public void setPosition(String position) {
  25. this.position = position;
  26. }
  27. }