| | |
| | | import com.baomidou.mybatisplus.annotation.TableId; |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import com.fasterxml.jackson.annotation.JsonIgnoreProperties; |
| | | import com.whyc.dto.Page; |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | |
| | | @NoArgsConstructor |
| | | @ToString |
| | | @TableName(schema = "db_pwrdev_alarm",value = "tb_pwrdev_alarm") |
| | | @ApiModel(value="PwrdevAlarm对象", description="") |
| | | @ApiModel(value="PwrdevAlarm对象") |
| | | @JsonIgnoreProperties(ignoreUnknown = true) |
| | | public class PwrdevAlarm implements Serializable { |
| | | |
| | | private static final long serialVersionUID = 1L; |
| | |
| | | @ApiModelProperty(value = "机房名称") |
| | | private String stationName3; |
| | | @TableField(exist = false) |
| | | private String stationName4; |
| | | @TableField(exist = false) |
| | | @ApiModelProperty(value = "用户关闭记录时间") |
| | | private Date recordTime; |
| | | |
| | |
| | | private String stationId; |
| | | |
| | | @TableField(exist = false) |
| | | @ApiModelProperty(value = "电源名称") |
| | | private String powerDeviceName; |
| | | |
| | | @TableField(exist = false) |
| | | private Page page; |
| | | |
| | | |
| | |
| | | @TableField("alm_severity") |
| | | private Integer almSeverity; |
| | | |
| | | @ApiModelProperty(value = "电源类型分类:110:国网,115:南网,111:绝缘装置,112:充电机,113:空调系统,114:视频系统,116:ups,117:空调控制") |
| | | @TableField(exist = false) |
| | | private Integer pwrAlmFlag; |
| | | |
| | | } |