新增 批量查询枪口列表接口

This commit is contained in:
Lemon
2024-11-06 11:37:26 +08:00
parent 41b7efde3b
commit 9623d1b8be
5 changed files with 119 additions and 4 deletions

View File

@@ -128,4 +128,11 @@ public interface PileConnectorInfoMapper {
* @return
*/
PileConnectorInfoVO getConnectorInfoByParams(@Param("dto") QueryConnectorInfoDTO dto);
/**
* 通过站点idList查询枪口列表信息
* @param stationIds
* @return
*/
List<ConnectorInfoVO> batchSelectConnectorList(@Param("stationIds") List<String> stationIds);
}