package com.yuanchu.mom.mapper; import com.yuanchu.mom.pojo.Device; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import java.util.List; import java.util.Map; /** *

* Mapper 接口 *

* * @author 江苏鵷雏网络科技有限公司 * @since 2023-07-31 */ public interface DeviceMapper extends BaseMapper { //查询设备维护-->左侧列表设备组展示 List> deviceTwoTree(Integer type, String search_class); //查询设备维护-->右侧列表展示该设备组下的所有设备 List> selectTreeDevice(Integer type, String father, Integer deviceStatus, String message); //根据分组查询设备名 List> getDeviceNameByGroup(String deviceGroup); //选择所有设备组 List> chooseDevGroup(); //批量删除 void delAllDevice(String ids); //原材料检验-->选择设备 List> chooseDevice(); //新增--选择设备组 List listGroup(Integer type); }