package com.ruoyi.project.tr.determination.service;
|
|
import java.util.List;
|
import com.ruoyi.project.tr.determination.domain.Determination;
|
|
/**
|
* 判定Service接口
|
*
|
* @author wm
|
* @date 2020-05-05
|
*/
|
public interface IDeterminationService
|
{
|
/**
|
* 查询判定
|
*
|
* @param determinationId 判定ID
|
* @return 判定
|
*/
|
Determination selectDeterminationById(Long determinationId);
|
|
/**
|
* 查询判定列表
|
*
|
* @param determination 判定
|
* @return 判定集合
|
*/
|
List<Determination> selectDeterminationList(Determination determination);
|
|
List<Determination> selectDeterminationListByMethod(Long methodId);
|
|
/**
|
* 新增判定
|
*
|
* @param determination 判定
|
* @return 结果
|
*/
|
int insertDetermination(Determination determination);
|
|
/**
|
* 修改判定
|
*
|
* @param determination 判定
|
* @return 结果
|
*/
|
int updateDetermination(Determination determination);
|
|
/**
|
* 批量删除判定
|
*
|
* @param ids 需要删除的数据ID
|
* @return 结果
|
*/
|
int deleteDeterminationByIds(String ids);
|
|
/**
|
* 删除判定信息
|
*
|
* @param determinationId 判定ID
|
* @return 结果
|
*/
|
int deleteDeterminationById(Long determinationId);
|
}
|