IndexDTO.java 531 B

1234567891011121314151617181920212223242526
  1. package com.diagbot.dto;
  2. import java.util.Date;
  3. import java.util.List;
  4. import lombok.Getter;
  5. import lombok.Setter;
  6. /**
  7. *
  8. * @author wangfeng
  9. * @Description: TODO
  10. * @date 2019年5月6日 下午8:09:16
  11. */
  12. @Getter
  13. @Setter
  14. public class IndexDTO {
  15. private String itemName; // 指标名称
  16. private Long uniqueId;
  17. private Integer groupType;
  18. private List<String> indexUnit;//单位
  19. private List<Integer> isAbnormal;//是否异常
  20. private List<String> indexValue;
  21. private List<Date> creatTime;
  22. }