zhoupeng 1 year ago
parent
commit
e831fab4b5

+ 1 - 1
industry-system/industry-da/src/main/java/com/example/opc_da/dao/DeviceRunDao.java

@@ -32,5 +32,5 @@ public interface DeviceRunDao {
 
     List<DeviceRun> getDeviceRunPage(Integer startNum, Integer limitNum);
 
-    List<DeviceRunItem> getDeviceRunItemShowByDeviceId(Integer id, Integer isShow);
+    List<DeviceRunItem> getDeviceRunItemShowByDeviceId(Integer deviceRunId, Integer isShow);
 }

+ 1 - 1
industry-system/industry-da/src/main/java/com/example/opc_da/dao/MainRunDao.java

@@ -32,5 +32,5 @@ public interface MainRunDao {
 
     List<MainRunItem> getMainRunItemByItemIdList(List<MainRunItem> mainRunItemList);
 
-    List<MainRunItem> getMainRunItemShowByMainId(Integer id, Integer isShow);
+    List<MainRunItem> getMainRunItemShowByMainId(Integer mainRunId, Integer isShow);
 }

+ 1 - 1
industry-system/industry-da/src/main/java/com/example/opc_da/dao/TrafficChartDao.java

@@ -32,5 +32,5 @@ public interface TrafficChartDao {
 
     List<TrafficChartItem> getTrafficChartItemByItemIdList(List<TrafficChartItem> trafficChartItemList);
 
-    List<TrafficChartItem> getTcItemShowByTrafficChartId(Integer id, Integer isShow);
+    List<TrafficChartItem> getTcItemShowByTrafficChartId(Integer trafficChartId, Integer isShow);
 }