| | |
| | | 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 io.swagger.annotations.ApiModel; |
| | |
| | | @ApiModelProperty(value = "告警类型") |
| | | private Integer almSignalId; |
| | | |
| | | @TableField(exist = false) |
| | | private String almName; |
| | | |
| | | @ApiModelProperty(value = "告警等级") |
| | | private Integer almLevel; |
| | | |
| | |
| | | @ApiModelProperty(value = "告警重要等级[0:重要;1:紧急]") |
| | | private Integer almSeverity; |
| | | |
| | | @TableField(exist = false) |
| | | private String battgroupName; |
| | | |
| | | @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; |
| | | |
| | | } |