EMRIntroduceDTO.java 240 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/11 14:00
  8. */
  9. @Getter
  10. @Setter
  11. public class EMRIntroduceDTO {
  12. private String title;
  13. private String text;
  14. }