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/ITcSjlyService.java

79 lines
1.6 KiB

package com.ruoyi.tcZz.service;
import java.util.List;
import com.ruoyi.tcZz.domain.TcAqg;
import com.ruoyi.tcZz.domain.TcSjly;
/**
* 硬探针、软探针Service接口
*
* @author ruoyi
* @date 2023-10-13
*/
public interface ITcSjlyService
{
/**
* 查询硬探针、软探针
*
* @param id 硬探针、软探针主键
* @return 硬探针、软探针
*/
public TcSjly selectTcSjlyById(Long id);
/**
* 查询硬探针、软探针列表
*
* @param tcSjly 硬探针、软探针
* @return 硬探针、软探针集合
*/
public List<TcSjly> selectTcSjlyList(TcSjly tcSjly);
/**
* 新增硬探针、软探针
*
* @param tcSjly 硬探针、软探针
* @return 结果
*/
public int insertTcSjly(TcSjly tcSjly);
/**
* 修改硬探针、软探针
*
* @param tcSjly 硬探针、软探针
* @return 结果
*/
public int updateTcSjly(TcSjly tcSjly);
/**
* 批量删除硬探针、软探针
*
* @param ids 需要删除的硬探针、软探针主键集合
* @return 结果
*/
public int deleteTcSjlyByIds(Long[] ids);
/**
* 删除硬探针、软探针信息
*
* @param id 硬探针、软探针主键
* @return 结果
*/
public int deleteTcSjlyById(Long id);
/**
* 导入硬探针、软探针信息
*
* @return 结果
*/
public String importUser(List<TcSjly> tcSjlyList);
/**
* 批量启用禁用
*
*
*/
public void updateByisStatus(Integer isStatus,List<String> ids);
}