package com.whyc.pojo;
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import org.apache.ibatis.type.Alias;
|
|
/**
|
* 某种类型设备参数配置表
|
*/
|
@Alias("DeviceParam")
|
@TableName(schema = "db_experiment",value = "tb_device_param")
|
public class DeviceParam {
|
|
private Integer num;
|
/**设备类型:暂定根据device_inf表deviceId首位数字匹配*/
|
private Byte deviceType;
|
/**预设,后续更新*/
|
private Float param1;
|
|
public Integer getNum() {
|
return num;
|
}
|
|
public void setNum(Integer num) {
|
this.num = num;
|
}
|
|
public Byte getDeviceType() {
|
return deviceType;
|
}
|
|
public void setDeviceType(Byte deviceType) {
|
this.deviceType = deviceType;
|
}
|
|
public Float getParam1() {
|
return param1;
|
}
|
|
public void setParam1(Float param1) {
|
this.param1 = param1;
|
}
|
}
|