You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tcZz-java/ruoyi-admin/src/main/java/com/ruoyi/tcZz/service/ITcWljgService.java

62 lines
1.2 KiB

package com.ruoyi.tcZz.service;
import java.util.List;
import com.ruoyi.tcZz.domain.TcWljg;
/**
* 网络监测Service接口
*
* @author ruoyi
* @date 2023-10-12
*/
public interface ITcWljgService
{
/**
* 查询网络监测
*
* @param id 网络监测主键
* @return 网络监测
*/
public TcWljg selectTcWljgById(Long id);
/**
* 查询网络监测列表
*
* @param tcWljg 网络监测
* @return 网络监测集合
*/
public List<TcWljg> selectTcWljgList(TcWljg tcWljg);
/**
* 新增网络监测
*
* @param tcWljg 网络监测
* @return 结果
*/
public int insertTcWljg(TcWljg tcWljg);
/**
* 修改网络监测
*
* @param tcWljg 网络监测
* @return 结果
*/
public int updateTcWljg(TcWljg tcWljg);
/**
* 批量删除网络监测
*
* @param ids 需要删除的网络监测主键集合
* @return 结果
*/
public int deleteTcWljgByIds(Long[] ids);
/**
* 删除网络监测信息
*
* @param id 网络监测主键
* @return 结果
*/
public int deleteTcWljgById(Long id);
}