package com.se.system.mapper; import java.util.List; import com.se.system.domain.SysSoft; /** * 软件Mapper接口 * * @author se * @date 2024-11-22 */ public interface SysSoftMapper { /** * 查询软件 * * @param softId 软件主键 * @return 软件 */ public SysSoft selectSysSoftBySoftId(Long softId); /** * 查询软件列表 * * @param sysSoft 软件 * @return 软件集合 */ public List selectSysSoftList(SysSoft sysSoft); /** * 新增软件 * * @param sysSoft 软件 * @return 结果 */ public int insertSysSoft(SysSoft sysSoft); /** * 修改软件 * * @param sysSoft 软件 * @return 结果 */ public int updateSysSoft(SysSoft sysSoft); /** * 删除软件 * * @param softId 软件主键 * @return 结果 */ public int deleteSysSoftBySoftId(Long softId); /** * 批量删除软件 * * @param softIds 需要删除的数据主键集合 * @return 结果 */ public int deleteSysSoftBySoftIds(Long[] softIds); }