lyh
5 天以前 54f239669575cedfdbdf28e38d0e9619a610bf95
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;
 
}