package com.whyc.pojo;
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
|
import java.util.Date;
|
|
@TableName(schema = "web_site",value = "tb_inspection_detail")
|
public class InspectionDetail {
|
|
private Integer id;
|
private Integer num;
|
private Integer deviceId;
|
private Float temperature;
|
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
private Date recordTime;
|
|
public Integer getId() {
|
return id;
|
}
|
|
public void setId(Integer id) {
|
this.id = id;
|
}
|
|
public Integer getNum() {
|
return num;
|
}
|
|
public void setNum(Integer num) {
|
this.num = num;
|
}
|
|
public Integer getDeviceId() {
|
return deviceId;
|
}
|
|
public void setDeviceId(Integer deviceId) {
|
this.deviceId = deviceId;
|
}
|
|
public Float getTemperature() {
|
return temperature;
|
}
|
|
public void setTemperature(Float temperature) {
|
this.temperature = temperature;
|
}
|
|
public Date getRecordTime() {
|
return recordTime;
|
}
|
|
public void setRecordTime(Date recordTime) {
|
this.recordTime = recordTime;
|
}
|
}
|