1234567891011121314151617181920212223242526 |
- package com.diagbot.dto;
- import java.util.Date;
- import java.util.List;
- import lombok.Getter;
- import lombok.Setter;
- /**
- *
- * @author wangfeng
- * @Description: TODO
- * @date 2019年5月6日 下午8:09:16
- */
- @Getter
- @Setter
- public class IndexDTO {
-
- private String itemName; // 指标名称
- private Long uniqueId;
- private Integer groupType;
- private List<String> indexUnit;//单位
- private List<Integer> isAbnormal;//是否异常
- private List<String> indexValue;
- private List<Date> creatTime;
- }
|