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;
|
}
|
}
|