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
package com.whyc.pojo;
 
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableName;
 
import java.util.Date;
 
@TableName(schema = "db_dh",value = "interface_b_mode")
public class InterfaceBMode {
    private Long id;
    private String transfer_mode;
    @TableField("interval_time")
    private Integer interval;
    private Date create_time;
 
    public Long getId() {
        return id;
    }
 
    public void setId(Long id) {
        this.id = id;
    }
 
    public String getTransfer_mode() {
        return transfer_mode;
    }
 
    public void setTransfer_mode(String transfer_mode) {
        this.transfer_mode = transfer_mode;
    }
 
    public Integer getInterval() {
        return interval;
    }
 
    public void setInterval(Integer interval) {
        this.interval = interval;
    }
 
    public Date getCreate_time() {
        return create_time;
    }
 
    public void setCreate_time(Date create_time) {
        this.create_time = create_time;
    }
}