From 88700e4d93e6d1e0892c488ffbf165b010d1a182 Mon Sep 17 00:00:00 2001
From: Lius <Lius2225@163.com>
Date: 星期一, 15 一月 2024 11:49:40 +0800
Subject: [PATCH] 设备监控上报设备状态信息接口
---
lxzn-module-eam/src/main/java/org/jeecg/modules/eam/controller/PrecisionInspectionDetailController.java | 7 ++++++-
1 files changed, 6 insertions(+), 1 deletions(-)
diff --git a/lxzn-module-eam/src/main/java/org/jeecg/modules/eam/controller/PrecisionInspectionDetailController.java b/lxzn-module-eam/src/main/java/org/jeecg/modules/eam/controller/PrecisionInspectionDetailController.java
index cfff3af..4b674bc 100644
--- a/lxzn-module-eam/src/main/java/org/jeecg/modules/eam/controller/PrecisionInspectionDetailController.java
+++ b/lxzn-module-eam/src/main/java/org/jeecg/modules/eam/controller/PrecisionInspectionDetailController.java
@@ -10,8 +10,11 @@
import org.jeecg.common.aspect.annotation.AutoLog;
import org.jeecg.common.system.base.controller.JeecgController;
import org.jeecg.common.system.query.QueryGenerator;
+import org.jeecg.modules.eam.entity.EquipmentPrecisionParameters;
import org.jeecg.modules.eam.entity.PrecisionInspectionDetail;
+import org.jeecg.modules.eam.entity.PrecisionParameters;
import org.jeecg.modules.eam.service.IPrecisionInspectionDetailService;
+import org.jeecg.modules.eam.service.IPrecisionParametersService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.*;
import org.springframework.web.servlet.ModelAndView;
@@ -33,6 +36,9 @@
public class PrecisionInspectionDetailController extends JeecgController<PrecisionInspectionDetail, IPrecisionInspectionDetailService> {
@Autowired
private IPrecisionInspectionDetailService precisionInspectionDetailService;
+
+ @Autowired
+ private IPrecisionParametersService precisionParametersService;
/**
* 鍒嗛〉鍒楄〃鏌ヨ
@@ -157,5 +163,4 @@
public Result<?> importExcel(HttpServletRequest request, HttpServletResponse response) {
return super.importExcel(request, response, PrecisionInspectionDetail.class);
}
-
}
--
Gitblit v1.9.3