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.
63 lines
1.0 KiB
63 lines
1.0 KiB
2 years ago
|
package com.ruoyi.system.service;
|
||
|
|
||
|
import com.ruoyi.system.domain.SysSop;
|
||
|
|
||
|
import java.util.List;
|
||
|
|
||
|
/**
|
||
|
* SOPService接口
|
||
|
*
|
||
|
* @author ruoyi
|
||
|
* @date 2022-11-07
|
||
|
*/
|
||
|
public interface ISysSopService
|
||
|
{
|
||
|
/**
|
||
|
* 查询SOP
|
||
|
*
|
||
|
* @param sopId SOPID
|
||
|
* @return SOP
|
||
|
*/
|
||
|
public SysSop selectSysSopById(Long sopId);
|
||
|
|
||
|
/**
|
||
|
* 查询SOP列表
|
||
|
*
|
||
|
* @param sysSop SOP
|
||
|
* @return SOP集合
|
||
|
*/
|
||
|
public List<SysSop> selectSysSopList(SysSop sysSop);
|
||
|
|
||
|
/**
|
||
|
* 新增SOP
|
||
|
*
|
||
|
* @param sysSop SOP
|
||
|
* @return 结果
|
||
|
*/
|
||
|
public int insertSysSop(SysSop sysSop);
|
||
|
|
||
|
/**
|
||
|
* 修改SOP
|
||
|
*
|
||
|
* @param sysSop SOP
|
||
|
* @return 结果
|
||
|
*/
|
||
|
public int updateSysSop(SysSop sysSop);
|
||
|
|
||
|
/**
|
||
|
* 批量删除SOP
|
||
|
*
|
||
|
* @param ids 需要删除的数据ID
|
||
|
* @return 结果
|
||
|
*/
|
||
|
public int deleteSysSopByIds(String ids);
|
||
|
|
||
|
/**
|
||
|
* 删除SOP信息
|
||
|
*
|
||
|
* @param sopId SOPID
|
||
|
* @return 结果
|
||
|
*/
|
||
|
public int deleteSysSopById(Long sopId);
|
||
|
}
|