| | |
| | | import com.baomidou.mybatisplus.annotation.TableField; |
| | | import com.baomidou.mybatisplus.annotation.TableId; |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | import java.io.Serializable; |
| | | import java.util.Date; |
| | | import com.fasterxml.jackson.annotation.JsonIgnore; |
| | | import lombok.Data; |
| | | |
| | | import java.io.Serializable; |
| | | import java.time.LocalDateTime; |
| | | |
| | | /** |
| | | * 农耕大气监测数据 |
| | | * |
| | | * @TableName air_data_nong_geng |
| | | */ |
| | | @TableName(value ="air_data_nong_geng") |
| | | @TableName(value = "air_data_nong_geng") |
| | | @Data |
| | | public class AirDataNongGeng implements Serializable { |
| | | /** |
| | |
| | | /** |
| | | * 设备类型 |
| | | */ |
| | | @JsonIgnore |
| | | private String type; |
| | | |
| | | /** |
| | | * 创建时间 |
| | | */ |
| | | private Date createTime; |
| | | private LocalDateTime createTime; |
| | | |
| | | @TableField(exist = false) |
| | | private static final long serialVersionUID = 1L; |