38 lines
1.2 KiB
Plaintext
38 lines
1.2 KiB
Plaintext
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<com.sercurityControl.proteam.dutyTask.domain.ResourceMonitorEntity>
|
|
* @author cw chen
|
|
* @description 设备状态监测
|
|
* @Param entity
|
|
* @date 2023-05-30 17:39
|
|
*/
|
|
List<ResourceMonitorEntity> 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<com.sercurityControl.proteam.dutyTask.domain.ResourceMonitorEntity>
|
|
* @author cw chen
|
|
* @description 告警记录列表
|
|
* @Param entity
|
|
* @date 2023-06-02 10:02
|
|
*/
|
|
List<ResourceMonitorEntity> getAlarmReocrdList(ResourceMonitorEntity entity);
|
|
}
|