2026-02-05 17:19:07 +08:00
|
|
|
package com.solution.system.mapper;
|
|
|
|
|
|
|
|
|
|
import java.util.List;
|
|
|
|
|
import com.solution.system.domain.Nodeparameter;
|
2026-02-09 14:52:56 +08:00
|
|
|
import org.apache.ibatis.annotations.Param;
|
2026-02-05 17:19:07 +08:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 节点参数Mapper接口
|
|
|
|
|
*
|
|
|
|
|
* @author ruoyi
|
|
|
|
|
* @date 2026-02-05
|
|
|
|
|
*/
|
|
|
|
|
public interface NodeparameterMapper
|
|
|
|
|
{
|
2026-02-09 14:52:56 +08:00
|
|
|
void deleteByTreeId(@Param("treeId") Long treeId);
|
|
|
|
|
|
2026-02-05 17:19:07 +08:00
|
|
|
/**
|
|
|
|
|
* 查询节点参数
|
|
|
|
|
*
|
|
|
|
|
* @param id 节点参数主键
|
|
|
|
|
* @return 节点参数
|
|
|
|
|
*/
|
|
|
|
|
public Nodeparameter selectNodeparameterById(Long id);
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 查询节点参数列表
|
|
|
|
|
*
|
|
|
|
|
* @param nodeparameter 节点参数
|
|
|
|
|
* @return 节点参数集合
|
|
|
|
|
*/
|
|
|
|
|
public List<Nodeparameter> selectNodeparameterList(Nodeparameter nodeparameter);
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 新增节点参数
|
|
|
|
|
*
|
|
|
|
|
* @param nodeparameter 节点参数
|
|
|
|
|
* @return 结果
|
|
|
|
|
*/
|
|
|
|
|
public int insertNodeparameter(Nodeparameter nodeparameter);
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 修改节点参数
|
|
|
|
|
*
|
|
|
|
|
* @param nodeparameter 节点参数
|
|
|
|
|
* @return 结果
|
|
|
|
|
*/
|
|
|
|
|
public int updateNodeparameter(Nodeparameter nodeparameter);
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 删除节点参数
|
|
|
|
|
*
|
|
|
|
|
* @param id 节点参数主键
|
|
|
|
|
* @return 结果
|
|
|
|
|
*/
|
|
|
|
|
public int deleteNodeparameterById(Long id);
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 批量删除节点参数
|
|
|
|
|
*
|
|
|
|
|
* @param ids 需要删除的数据主键集合
|
|
|
|
|
* @return 结果
|
|
|
|
|
*/
|
|
|
|
|
public int deleteNodeparameterByIds(Long[] ids);
|
|
|
|
|
}
|