EquipmentInfoMapper.java 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. package com.lqkj.info.mapper;
  2. import java.util.List;
  3. import org.apache.ibatis.annotations.Mapper;
  4. import com.lqkj.info.entity.EquipmentInfo;
  5. import org.apache.ibatis.annotations.Select;
  6. /**
  7. * 设备信息Mapper接口
  8. *
  9. * @author lqkj
  10. * @date 2024-11-12
  11. */
  12. @Mapper
  13. public interface EquipmentInfoMapper
  14. {
  15. /**
  16. * 查询设备信息
  17. *
  18. * @param equipmentId 设备信息主键
  19. * @return 设备信息
  20. */
  21. public EquipmentInfo selectEquipmentInfoByEquipmentId(Integer equipmentId);
  22. /**
  23. * 查询设备信息列表
  24. *
  25. * @param equipmentInfo 设备信息
  26. * @return 设备信息集合
  27. */
  28. public List<EquipmentInfo> selectEquipmentInfoList(EquipmentInfo equipmentInfo);
  29. /**
  30. * 新增设备信息
  31. *
  32. * @param equipmentInfo 设备信息
  33. * @return 结果
  34. */
  35. public int insertEquipmentInfo(EquipmentInfo equipmentInfo);
  36. /**
  37. * 修改设备信息
  38. *
  39. * @param equipmentInfo 设备信息
  40. * @return 结果
  41. */
  42. public int updateEquipmentInfo(EquipmentInfo equipmentInfo);
  43. /**
  44. * 删除设备信息
  45. *
  46. * @param equipmentId 设备信息主键
  47. * @return 结果
  48. */
  49. public int deleteEquipmentInfoByEquipmentId(Integer equipmentId);
  50. /**
  51. * 批量删除设备信息
  52. *
  53. * @param equipmentIds 需要删除的数据主键集合
  54. * @return 结果
  55. */
  56. public int deleteEquipmentInfoByEquipmentIds(Integer[] equipmentIds);
  57. // @Select("SELECT * FROM equipment_info ei " +
  58. // "WHERE ei.type_id IN (SELECT et.type_id FROM equipment_type et WHERE et.parent_id = 1)")
  59. //只查重点区域监控
  60. @Select("SELECT * FROM equipment_info WHERE type_id = 5 ")
  61. List<EquipmentInfo> getAllMonitors();
  62. }