Merge branch 'dev' of https://gitea.wangzhiwen.top/0214/ALOps_sys1 into dev
# Conflicts: # ALOps_sys_backend/alops-system/src/main/java/com/alops/system/service/impl/AlertMessageServiceImpl.javadev
commit
0dedb8b8e3
@ -0,0 +1,38 @@ |
||||
package com.alops.system.domain.vo; |
||||
|
||||
import com.alops.common.annotation.Excel; |
||||
import com.fasterxml.jackson.annotation.JsonFormat; |
||||
import lombok.Data; |
||||
|
||||
import java.util.Date; |
||||
|
||||
@Data |
||||
public class homeEquAlertMessage { |
||||
|
||||
|
||||
/** 预警级别(1-5级) */ |
||||
@Excel(name = "预警级别(1-5级)") |
||||
private Long level; |
||||
|
||||
/** 发生时间 */ |
||||
@Excel(name = "发生时间", width = 30, dateFormat = "yyyy-MM-dd") |
||||
private Date occurTime; |
||||
|
||||
|
||||
@Excel(name = "预警信息") |
||||
private String message; |
||||
|
||||
|
||||
/** 处理状态(open、in_progress_closed) */ |
||||
@Excel(name = "处理状态") |
||||
private String status; |
||||
|
||||
@Excel(name = "处理状态") |
||||
private String name; |
||||
|
||||
@Excel(name = "处理状态") |
||||
private String location; |
||||
|
||||
|
||||
|
||||
} |
||||
Loading…
Reference in new issue