You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

84 lines
1.8 KiB
Java

package com.shxy.xyhkcamera.entity;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import java.io.Serializable;
import java.time.LocalDateTime;
import lombok.Getter;
import lombok.Setter;
/**
* <p>
*
* </p>
*
* @author jingjing
* @since 2024-05-20
*/
@Getter
@Setter
@TableName("data_eaif_h")
public class DataEaifHEntity implements Serializable {
private static final long serialVersionUID = 1L;
@TableId(value = "data_id", type = IdType.AUTO)
private Integer dataId;
@TableField("eqmid")
private Integer eqmid;
@TableField("areaid")
private Integer areaid;
@TableField("capturetime")
private LocalDateTime capturetime;
@TableField("maxtemp")
private Double maxtemp;
@TableField("mintemp")
private Double mintemp;
@TableField("avgtemp")
private Double avgtemp;
@TableField("unit")
private Byte unit;
@TableField("type")
private Byte type;
@TableField("mid")
private Double mid;
@Override
public String toString() {
return "DataEaifHEntity{" +
"dataId=" + dataId +
", eqmid=" + eqmid +
", areaid=" + areaid +
", capturetime=" + capturetime +
", maxtemp=" + maxtemp +
", mintemp=" + mintemp +
", avgtemp=" + avgtemp +
", unit=" + unit +
", type=" + type +
", mid=" + mid +
", std=" + std +
", isupload=" + isupload +
'}';
}
@TableField("std")
private Double std;
private Integer isupload;
}