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_b_device_config")
|
public class InterfaceBDeviceConfig {
|
private Long id;
|
private String guid;
|
private String tag;
|
private String name;
|
private String device_type;
|
private String path;
|
private Long mode_id;
|
private Date create_time;
|
|
@TableField(exist = false)
|
private List<InterfaceBPoint> points;
|
|
public Long getId() {
|
return id;
|
}
|
|
public void setId(Long id) {
|
this.id = id;
|
}
|
|
public String getGuid() {
|
return guid;
|
}
|
|
public void setGuid(String guid) {
|
this.guid = guid;
|
}
|
|
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 String getDevice_type() {
|
return device_type;
|
}
|
|
public void setDevice_type(String device_type) {
|
this.device_type = device_type;
|
}
|
|
public String getPath() {
|
return path;
|
}
|
|
public void setPath(String path) {
|
this.path = path;
|
}
|
|
public Long getMode_id() {
|
return mode_id;
|
}
|
|
public void setMode_id(Long mode_id) {
|
this.mode_id = mode_id;
|
}
|
|
public List<InterfaceBPoint> getPoints() {
|
return points;
|
}
|
|
public void setPoints(List<InterfaceBPoint> points) {
|
this.points = points;
|
}
|
|
public Date getCreate_time() {
|
return create_time;
|
}
|
|
public void setCreate_time(Date create_time) {
|
this.create_time = create_time;
|
}
|
}
|