package com.ruoyi.iot.mapper; import com.ruoyi.iot.domain.Device; import com.ruoyi.iot.domain.DeviceOrder; import org.apache.ibatis.annotations.Param; import java.util.List; /** * @author wmz * @version v1.0 * @ClassName DeviceOrderMapper * @description * @createTime 2023/11/12 23:10 */ public interface DeviceOrderMapper { /** * 查询设全部备订单分页查询信息 * * @return * @throws Exception */ public List selectDeviceOrderAll() throws Exception; /** * 查询设备订单分页查询信息 * * @return * @throws Exception */ public List selectDeviceOrderList(DeviceOrder deviceOrder) throws Exception; /** * 添加 * * @param deviceOrder * @return * @throws Exception */ public int insertDeviceOrder(DeviceOrder deviceOrder) throws Exception; /** * 修改 * * @param order * @return * @throws Exception */ public int updateDeviceOrder(DeviceOrder order) throws Exception; /** * 删除设备订单安装信息 * * @param id * @return * @throws Exception */ public int deleteDeviceOrderById(Integer id) throws Exception; /** * 批量删除设备订单安装信息 * * @param ids * @return */ public int deleteDeviceOrder(@Param("idss") Integer[] ids); }