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;
|
}
|
}
|