|
@@ -1,5 +1,6 @@
|
|
package org.jeecg.modules.itdmDevice.service.impl;
|
|
package org.jeecg.modules.itdmDevice.service.impl;
|
|
|
|
|
|
|
|
+import org.apache.ibatis.annotations.Param;
|
|
import org.jeecg.modules.itdmDevice.entity.ItdmDevice;
|
|
import org.jeecg.modules.itdmDevice.entity.ItdmDevice;
|
|
import org.jeecg.modules.itdmDevice.mapper.ItdmDeviceMapper;
|
|
import org.jeecg.modules.itdmDevice.mapper.ItdmDeviceMapper;
|
|
import org.jeecg.modules.itdmDevice.service.IItdmDeviceService;
|
|
import org.jeecg.modules.itdmDevice.service.IItdmDeviceService;
|
|
@@ -30,4 +31,11 @@ public class ItdmDeviceServiceImpl extends ServiceImpl<ItdmDeviceMapper, ItdmDev
|
|
return itdmDeviceMapper.queryList();
|
|
return itdmDeviceMapper.queryList();
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ /**
|
|
|
|
+ * 通过设备id(多个,以逗号间隔)查询设备名(多个,以逗号间隔)
|
|
|
|
+ */
|
|
|
|
+ public String queryNameByIdList(@Param("shebeiId") String shebeiId){
|
|
|
|
+ return itdmDeviceMapper.queryNameByIdList(shebeiId);
|
|
|
|
+ }
|
|
|
|
+
|
|
}
|
|
}
|