package com.ruoyi.dl.service; import java.util.List; import com.ruoyi.dl.domain.DlShebeixx; /** * 设备信息Service接口 * * @author ruoyi * @date 2023-09-13 */ public interface IDlShebeixxService { /** * 查询设备信息 * * @param id 设备信息主键 * @return 设备信息 */ public DlShebeixx selectDlShebeixxById(Long id); /** * 查询设备信息列表 * * @param dlShebeixx 设备信息 * @return 设备信息集合 */ public List selectDlShebeixxList(DlShebeixx dlShebeixx); /** * 查询设备信息列表 * * @param dlShebeixx 设备信息 * @return 设备信息集合 */ public List selectListByGroupBy(DlShebeixx dlShebeixx); /** * 新增设备信息 * * @param dlShebeixx 设备信息 * @return 结果 */ public int insertDlShebeixx(DlShebeixx dlShebeixx); /** * 修改设备信息 * * @param dlShebeixx 设备信息 * @return 结果 */ public int updateDlShebeixx(DlShebeixx dlShebeixx); /** * 批量删除设备信息 * * @param ids 需要删除的设备信息主键集合 * @return 结果 */ public int deleteDlShebeixxByIds(Long[] ids); /** * 删除设备信息信息 * * @param id 设备信息主键 * @return 结果 */ public int deleteDlShebeixxById(Long id); }