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 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); }