| | |
| | | package com.sandu.ximon.dao.domain; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.IdType; |
| | | import com.baomidou.mybatisplus.annotation.TableField; |
| | | import com.baomidou.mybatisplus.annotation.TableId; |
| | | import lombok.Data; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | import java.io.Serializable; |
| | | import java.time.LocalDateTime; |
| | | import lombok.Data; |
| | | |
| | | @Data |
| | | /** |
| | | * 灯杆倾侧 |
| | | * 倾侧告警表 |
| | | * @TableName light_pole_heeling |
| | | */ |
| | | @TableName(value ="light_pole_heeling") |
| | | @Data |
| | | public class LightPoleHeeling implements Serializable { |
| | | /** |
| | | * |
| | | */ |
| | | @TableId(type = IdType.AUTO) |
| | | private Long id; |
| | | //所属人 |
| | | private Long userId; |
| | | //告警号 |
| | | private String warningNumber; |
| | | //灯杆ID |
| | | private Long lightPoleId; |
| | | //灯杆名称 |
| | | private String lightPoleName; |
| | | //告警等级 |
| | | private String warningLevel; |
| | | //X轴 |
| | | private int theXAxis; |
| | | //Y轴 |
| | | private int theYAxis; |
| | | //Z轴 |
| | | private int theZAxis; |
| | | //处理状态 |
| | | // 1:已处理;0:未处理 |
| | | private int processingState; |
| | | //告警时间 |
| | | private Long warningNumber; |
| | | |
| | | /** |
| | | * 设备MAC地址 |
| | | */ |
| | | private String mac; |
| | | |
| | | /** |
| | | * 警告等级 |
| | | */ |
| | | private Integer warningLevel; |
| | | |
| | | /** |
| | | * X轴 |
| | | */ |
| | | private Double theXAxis; |
| | | |
| | | /** |
| | | * Y轴 |
| | | */ |
| | | private Double theYAxis; |
| | | |
| | | /** |
| | | * Z轴 |
| | | */ |
| | | private Double theZAxis; |
| | | |
| | | /** |
| | | * 处理状态 |
| | | */ |
| | | private Integer processingState; |
| | | |
| | | /** |
| | | * |
| | | */ |
| | | private LocalDateTime createTime; |
| | | |
| | | } |
| | | /** |
| | | * 灯杆编号 |
| | | */ |
| | | private Long poleCode; |
| | | |
| | | /** |
| | | * 灯杆名称 |
| | | */ |
| | | private String poleName; |
| | | |
| | | @TableField(exist = false) |
| | | private static final long serialVersionUID = 1L; |
| | | } |