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
package com.whyc.pojo;
 
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableName;
 
import java.util.Date;
import java.util.List;
 
@TableName(schema = "db_dh",value = "interface_c_data")
public class InterfaceCData {
    private Long id;
    private String device_id;
    private String idc;
    private String device_type;
    private Date create_time;
 
    @TableField(exist = false)
    private List<InterfaceCPoint> points;
 
    public Long getId() {
        return id;
    }
 
    public void setId(Long id) {
        this.id = id;
    }
 
    public Date getCreate_time() {
        return create_time;
    }
 
    public void setCreate_time(Date create_time) {
        this.create_time = create_time;
    }
 
    public String getDevice_id() {
        return device_id;
    }
 
    public void setDevice_id(String device_id) {
        this.device_id = device_id;
    }
 
    public String getIdc() {
        return idc;
    }
 
    public void setIdc(String idc) {
        this.idc = idc;
    }
 
    public String getDevice_type() {
        return device_type;
    }
 
    public void setDevice_type(String device_type) {
        this.device_type = device_type;
    }
 
    public List<InterfaceCPoint> getPoints() {
        return points;
    }
 
    public void setPoints(List<InterfaceCPoint> points) {
        this.points = points;
    }
}