package com.sercurityControl.proteam.dutyTask.mapper; import com.sercurityControl.proteam.dutyTask.domain.ResourceMonitorEntity; import com.sercurityControl.proteam.dutyTask.domain.ServerMonitorEntity; import org.springframework.stereotype.Repository; import java.util.List; @Repository(value = "ResourceMonitorMapper") public interface ResourceMonitorMapper { /** * @return java.util.List * @author cw chen * @description 设备状态监测 * @Param entity * @date 2023-05-30 17:39 */ List getDeviceStatusMonitorList(ResourceMonitorEntity entity); /** * @return void * @author cw chen * @description 添加资源状态监测-设备状态监测 * @Param entity * @date 2023-05-31 16:36 */ void addResourceData(ResourceMonitorEntity entity); /** * @return java.util.List * @author cw chen * @description 告警记录列表 * @Param entity * @date 2023-06-02 10:02 */ List getAlarmReocrdList(ResourceMonitorEntity entity); }