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;
|
|
List<MdcAlarmListDto> alarmList;
|
}
|