|
@@ -3,6 +3,7 @@ package com.lqkj.info.mapper;
|
3
|
3
|
import java.util.List;
|
4
|
4
|
import org.apache.ibatis.annotations.Mapper;
|
5
|
5
|
import com.lqkj.info.entity.EquipmentInfo;
|
|
6
|
+import org.apache.ibatis.annotations.Select;
|
6
|
7
|
|
7
|
8
|
/**
|
8
|
9
|
* 设备信息Mapper接口
|
|
@@ -60,4 +61,8 @@ public interface EquipmentInfoMapper
|
60
|
61
|
* @return 结果
|
61
|
62
|
*/
|
62
|
63
|
public int deleteEquipmentInfoByEquipmentIds(Integer[] equipmentIds);
|
|
64
|
+
|
|
65
|
+ @Select("SELECT * FROM equipment_info ei " +
|
|
66
|
+ "WHERE ei.type_id IN (SELECT et.type_id FROM equipment_type et WHERE et.parent_id = 1)")
|
|
67
|
+ List<EquipmentInfo> getAllMonitors();
|
63
|
68
|
}
|