whycxzp
2021-07-26 24fd4ac01b448c2dab5dbcc1f9a641a38fc783e7
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
package com.whyc.pojo;
 
import com.baomidou.mybatisplus.annotation.TableName;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import org.apache.ibatis.type.Alias;
 
import java.util.Date;
 
/**
 *  MotorSystem设备中
 *  10001~10004-5000kVA进线屏/出线屏,1/2号3200kVA出线屏
 *  的简略参数
 */
@ApiModel
@Alias("CentralMonitorSystemRT")
@TableName( schema = "`db_3.5mw_motor`",value = "tb_central_monitor_sys_rt")
public class CentralMonitorSysRT {
    
    Long    num        ;
    Integer    devId    ;
    @ApiModelProperty(value = "更新时间")
    Date recordTime;
    @ApiModelProperty(value = "开关合闸状态")
    Integer    switchClose;    
    @ApiModelProperty(value = "开关分闸状态")
    Integer    switchOpen;    
    @ApiModelProperty(value = "开关故障状态")
    Integer    switchFault;    
    @ApiModelProperty(value = "进线屏电压")
    Float    panelVol;    
    @ApiModelProperty(value = "进线屏电流")
    Float    panelCurr;
    String    note    ;
 
    public Long getNum() {
        return num;
    }
 
    public void setNum(Long num) {
        this.num = num;
    }
 
    public Integer getDevId() {
        return devId;
    }
 
    public void setDevId(Integer devId) {
        this.devId = devId;
    }
 
    public Date getRecordTime() {
        return recordTime;
    }
 
    public void setRecordTime(Date recordTime) {
        this.recordTime = recordTime;
    }
 
    public Integer getSwitchClose() {
        return switchClose;
    }
 
    public void setSwitchClose(Integer switchClose) {
        this.switchClose = switchClose;
    }
 
    public Integer getSwitchOpen() {
        return switchOpen;
    }
 
    public void setSwitchOpen(Integer switchOpen) {
        this.switchOpen = switchOpen;
    }
 
    public Integer getSwitchFault() {
        return switchFault;
    }
 
    public void setSwitchFault(Integer switchFault) {
        this.switchFault = switchFault;
    }
 
    public Float getPanelVol() {
        return panelVol;
    }
 
    public void setPanelVol(Float panelVol) {
        this.panelVol = panelVol;
    }
 
    public Float getPanelCurr() {
        return panelCurr;
    }
 
    public void setPanelCurr(Float panelCurr) {
        this.panelCurr = panelCurr;
    }
 
    public String getNote() {
        return note;
    }
 
    public void setNote(String note) {
        this.note = note;
    }
}