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 com.baomidou.mybatisplus.annotation.TableName;
|
import java.io.Serializable;
|
import java.time.LocalDateTime;
|
import lombok.Data;
|
|
/**
|
* 倾侧告警表
|
* @TableName light_pole_heeling
|
*/
|
@TableName(value ="light_pole_heeling")
|
@Data
|
public class LightPoleHeeling implements Serializable {
|
/**
|
*
|
*/
|
@TableId(type = IdType.AUTO)
|
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;
|
}
|