1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
| package cn.gistack.alerts.alarmRule.vo;
|
| import cn.gistack.alerts.alarmRule.entity.AlarmRuleDetail;
| import lombok.Data;
|
| /**
| * 告警记录详情vo
| * @author zhongrj
| * @date 2023-05-29
| */
| @Data
| public class AlarmRuleDetailVO extends AlarmRuleDetail {
|
| /**
| * 告警内容
| */
| private String alarmContent;
| }
|
|