1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
| package com.zhitan.realtimedata.domain.vo;
|
| import lombok.Data;
|
| /**
| * 设备监测参数列表对象
| */
| @Data
| public class EquipmentMeasuringPointParameters {
|
| private String code;
|
| private String indexName;
|
| private String indexUnit;
|
| private Double value;
|
| private String yValue;
|
| private String meteName;
|
| public String getyValue() {
| return yValue;
| }
|
| public void setyValue(String yValue) {
| this.yValue = yValue;
| }
| }
|
|