whycxzp
2021-02-27 b6da124c01878800d2061e4e29d4f0bb6a7b94e4
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
package com.whyc.pojo;
 
import com.baomidou.mybatisplus.annotation.TableName;
import org.apache.ibatis.type.Alias;
 
/**
 * 大功率整流电源-控制状态信息
 */
@Alias("RectifierPowerControl")
@TableName(schema = "`db_3.5mw_motor`",value = "tb_rectifier_power_control")
public class RectifierPowerControl {
 
    Long num;
    Integer devId; //设备id
    Integer remoteStop; //工艺、综控远方停止大功率整流器
    Integer emergencyStop; //工艺、综控远方紧急停止大功率整流器
    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 Integer getRemoteStop() {
        return remoteStop;
    }
 
    public void setRemoteStop(Integer remoteStop) {
        this.remoteStop = remoteStop;
    }
 
    public Integer getEmergencyStop() {
        return emergencyStop;
    }
 
    public void setEmergencyStop(Integer emergencyStop) {
        this.emergencyStop = emergencyStop;
    }
 
    public String getNote() {
        return note;
    }
 
    public void setNote(String note) {
        this.note = note;
    }
}