IntroduceDetailDTO.java 245 B

12345678910111213141516
  1. package com.diagbot.dto;
  2. import lombok.Getter;
  3. import lombok.Setter;
  4. /**
  5. * @Description:
  6. * @Author:zhaops
  7. * @time: 2019/3/21 14:13
  8. */
  9. @Getter
  10. @Setter
  11. public class IntroduceDetailDTO {
  12. private String content;
  13. private String text;
  14. }