1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
| package jnpf.limsEntity;
|
| import com.fasterxml.jackson.annotation.JsonProperty;
| import lombok.Data;
|
| import java.util.ArrayList;
| import java.util.List;
|
| /**
| * 水系统趋势数据与对应标准。
| */
| @Data
| public class LimsSxtQushiDataVo {
|
| @JsonProperty("records")
| private List<LimsSxtQushiRecordVo> records = new ArrayList<>();
|
| @JsonProperty("standards")
| private List<LimsSxtQushiStandardVo> standards = new ArrayList<>();
| }
|
|