ITMonitorDeviceService.java 1.34 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61
package com.zehong.system.service;

import java.util.List;
import com.zehong.system.domain.TMonitorDevice;

/**
 * 设备监控Service接口
 * 
 * @author zehong
 * @date 2021-08-05
 */
public interface ITMonitorDeviceService 
{
    /**
     * 查询设备监控
     * 
     * @param monitorId 设备监控ID
     * @return 设备监控
     */
    public TMonitorDevice selectTMonitorDeviceById(Long monitorId);

    /**
     * 查询设备监控列表
     * 
     * @param tMonitorDevice 设备监控
     * @return 设备监控集合
     */
    public List<TMonitorDevice> selectTMonitorDeviceList(TMonitorDevice tMonitorDevice);

    /**
     * 新增设备监控
     * 
     * @param tMonitorDevice 设备监控
     * @return 结果
     */
    public int insertTMonitorDevice(TMonitorDevice tMonitorDevice);

    /**
     * 修改设备监控
     * 
     * @param tMonitorDevice 设备监控
     * @return 结果
     */
    public int updateTMonitorDevice(TMonitorDevice tMonitorDevice);

    /**
     * 批量删除设备监控
     * 
     * @param monitorIds 需要删除的设备监控ID
     * @return 结果
     */
    public int deleteTMonitorDeviceByIds(Long[] monitorIds);

    /**
     * 删除设备监控信息
     * 
     * @param monitorId 设备监控ID
     * @return 结果
     */
    public int deleteTMonitorDeviceById(Long monitorId);
}