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> DevicePageList(String codeNameModel, Integer type, Integer deviceStatue, Integer deviceId, String fatherName); List> getDeviceNameByGroup(String deviceGroup); }