net
2025-02-14 06d3d15a5a08637041cc601101c063b11b07a346
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
31
package com.zhitan.energyMonitor.domain.vo;
 
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
/**
 * 计算点位对应的计算公式
 * @author  zhw
 */
@Data
@ApiModel(value="计算点位对应的计算公式", description="计算点位对应的计算公式")
public class EnergyCalculateCalcTV {
    private static final long serialVersionUID = 1L;
 
    @ApiModelProperty(value = "计算点位主键")
    private String  calculateIndexId;
 
    @ApiModelProperty(value = "仪表设备主键")
    private String deviceId;
 
    @ApiModelProperty(value = "仪表名称")
    private String name;
 
    @ApiModelProperty(value = "计算点位包含的采集点位主键")
    private String collectIndexId;
 
    @ApiModelProperty(value = "采集点位对应操作符号")
    private String operator;
}