whycxzp
2023-05-12 d3465e119e5795a3addee8e3d3ae0ecc8a99fcc4
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
package com.whyc.pojo;
 
import com.baomidou.mybatisplus.annotation.TableName;
 
import java.util.Date;
 
@TableName(schema = "db_dh",value = "interface_b_point")
public class InterfaceBPoint {
    private Long id;
    private String tag;
    private String name;
    private Integer point_type;
    private String unit;
    private Long device_config_id;
    private Date create_time;
 
    public Long getId() {
        return id;
    }
 
    public void setId(Long id) {
        this.id = id;
    }
 
    public String getTag() {
        return tag;
    }
 
    public void setTag(String tag) {
        this.tag = tag;
    }
 
    public String getName() {
        return name;
    }
 
    public void setName(String name) {
        this.name = name;
    }
 
    public Integer getPoint_type() {
        return point_type;
    }
 
    public void setPoint_type(Integer point_type) {
        this.point_type = point_type;
    }
 
    public String getUnit() {
        return unit;
    }
 
    public void setUnit(String unit) {
        this.unit = unit;
    }
 
    public Long getDevice_config_id() {
        return device_config_id;
    }
 
    public void setDevice_config_id(Long device_config_id) {
        this.device_config_id = device_config_id;
    }
 
    public Date getCreate_time() {
        return create_time;
    }
 
    public void setCreate_time(Date create_time) {
        this.create_time = create_time;
    }
}