whyclxw
5 天以前 4b3cef746d0752487beffb72ff340e220b0388cd
src/main/java/com/whyc/pojo/db_alarm/DevalarmData.java
@@ -1,8 +1,10 @@
package com.whyc.pojo.db_alarm;
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 com.whyc.pojo.db_station.BattInf;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
@@ -11,6 +13,7 @@
import java.io.Serializable;
import java.util.Date;
import java.util.List;
/**
 * <p>
@@ -40,6 +43,9 @@
    @ApiModelProperty(value = "告警ID")
    private Integer almId;
    @TableField(exist = false)
    private String almName;
    @ApiModelProperty(value = "告警等级")
    private Integer almLevel;
@@ -75,4 +81,21 @@
    private Integer almSeverity;
    @TableField(exist = false)
    private String devName;
    @TableField(exist = false)
    private String stationName;
    @TableField(exist = false)
    private String provice;
    @TableField(exist = false)
    private String city;
    @TableField(exist = false)
    private String country;
    @TableField(exist = false)
    private String fullName;
    @TableField(exist = false)
    private List<BattInf> binfList;
}