aix
2024-07-24 2cba01a6b6f67cfa97d0c4e0cc589302fab817ba
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package cn.gistack.alerts.alarmRule.vo;
 
import cn.gistack.alerts.alarmRule.entity.AlarmRecordDetail;
import lombok.Data;
 
/**
 * 告警记录详情vo
 * @author zhongrj
 * @date 2023-05-31
 */
@Data
public class AlarmRecordDetailVO extends AlarmRecordDetail {
 
    private Integer isExport;
 
    /**
     * 水库名称
     */
    private String reservoirName;
}