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