package com.whyc.pojo;
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
import java.util.Date;
|
|
@TableName(schema = "db_dh",value = "interface_c_point")
|
public class InterfaceCPoint {
|
private Long id;
|
private Integer point_code;
|
private String tag;
|
private Double value;
|
private Long timestamp;
|
private Long data_id;
|
private Date create_time;
|
|
public Long getId() {
|
return id;
|
}
|
|
public void setId(Long id) {
|
this.id = id;
|
}
|
|
public Integer getPoint_code() {
|
return point_code;
|
}
|
|
public void setPoint_code(Integer point_code) {
|
this.point_code = point_code;
|
}
|
|
public String getTag() {
|
return tag;
|
}
|
|
public void setTag(String tag) {
|
this.tag = tag;
|
}
|
|
public Double getValue() {
|
return value;
|
}
|
|
public void setValue(Double value) {
|
this.value = value;
|
}
|
|
public Long getTimestamp() {
|
return timestamp;
|
}
|
|
public void setTimestamp(Long timestamp) {
|
this.timestamp = timestamp;
|
}
|
|
public Long getData_id() {
|
return data_id;
|
}
|
|
public void setData_id(Long data_id) {
|
this.data_id = data_id;
|
}
|
|
public Date getCreate_time() {
|
return create_time;
|
}
|
|
public void setCreate_time(Date create_time) {
|
this.create_time = create_time;
|
}
|
}
|