whyczh
2021-03-25 da9bb5ab7c3efac4e0cb65fe6aebe7b5cc4cfbf4
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
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;
    }
}