MedicalIndication.java 395 B

12345678910111213141516171819202122
  1. package com.diagbot.client.bean;
  2. import lombok.Getter;
  3. import lombok.Setter;
  4. import java.util.List;
  5. /**
  6. * @Description:推送指标
  7. * @Author:zhaops
  8. * @time: 2019/3/14 14:40
  9. */
  10. @Getter
  11. @Setter
  12. public class MedicalIndication {
  13. private Long conceptId;
  14. private Integer libType;
  15. private Integer type;
  16. private String name;
  17. private List<MedicalIndicationDetail> details;
  18. }