qushaowei
2025-05-26 ed48aa9f30a87c528f071d06bf6b59d7d15428e9
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package org.jeecg.modules.mdc.dto;
 
import lombok.Data;
 
import java.util.List;
 
/**
 * @author: LiuS
 * @create: 2023-09-07 13:47
 */
@Data
public class MdcAlarmTrendDto {
 
    List<String> dateList;
 
    List<String> equipmentList;
 
    List<MdcAlarmDto> dateCountList;
 
    List<MdcAlarmDto> equipmentCountList;
 
}