whycxzp
2021-03-13 dbd5cf4f85c99c7c2189905d4972e42d0b2cbbe1
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.whyc.pojo;
 
import com.baomidou.mybatisplus.annotation.TableName;
import org.apache.ibatis.type.Alias;
 
/**
 * 设备状态
 */
@Alias("FBS9100State")
@TableName( schema = "`db_ram_db`",value = "`tb_fbs9100_state`")
public class FBS9100State {
 
    private Integer num;
    private Integer workState;
 
    public Integer getNum() {
        return num;
    }
 
    public void setNum(Integer num) {
        this.num = num;
    }
 
    public Integer getWorkState() {
        return workState;
    }
 
    public void setWorkState(Integer workState) {
        this.workState = workState;
    }
}