liulingling.177216
2024-08-26 349f1cfc5fa77fbc636d542df0d8050fddec48c2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package com.dingzhuo.energy.project.reportForm.domain;
 
import lombok.Data;
 
/**
 * @Description: 获取节点下的点位列表
 * @author: yxw
 * @date: 2022年04月01日 18:30
 */
@Data
public class reportSetDataModel {
 
    private String indexId;
    private String indexCode;
    private String indexName;
    private String meterId;
    private String meterName;
    /** 是否启用限值替换*/
    private boolean enableLimitValue;
}