|
@@ -0,0 +1,78 @@
|
|
|
|
+package com.slibra.web.controller.business;
|
|
|
|
+
|
|
|
|
+import com.google.protobuf.ByteString;
|
|
|
|
+import com.slibra.business.mapper.TXinyiDailyMapper;
|
|
|
|
+import com.slibra.business.mapper.TXinyiIndustryMapper;
|
|
|
|
+import com.slibra.business.mapper.TXinyiNormConfigMapper;
|
|
|
|
+import com.slibra.business.mapper.TXinyiRobotMapper;
|
|
|
|
+import com.slibra.common.core.controller.BaseController;
|
|
|
|
+import com.slibra.common.core.domain.AjaxResult;
|
|
|
|
+import io.grpc.ManagedChannel;
|
|
|
|
+import io.grpc.ManagedChannelBuilder;
|
|
|
|
+import lombok.extern.slf4j.Slf4j;
|
|
|
|
+import org.pytorch.serve.grpc.inference.InferenceAPIsServiceGrpc;
|
|
|
|
+import org.pytorch.serve.grpc.inference.PredictionResponse;
|
|
|
|
+import org.pytorch.serve.grpc.inference.PredictionsRequest;
|
|
|
|
+import org.springframework.beans.factory.annotation.Autowired;
|
|
|
|
+import org.springframework.web.bind.annotation.GetMapping;
|
|
|
|
+import org.springframework.web.bind.annotation.RequestMapping;
|
|
|
|
+import org.springframework.web.bind.annotation.RestController;
|
|
|
|
+
|
|
|
|
+import javax.servlet.http.HttpServletResponse;
|
|
|
|
+import java.io.IOException;
|
|
|
|
+import java.io.OutputStream;
|
|
|
|
+import java.io.UnsupportedEncodingException;
|
|
|
|
+import java.nio.charset.StandardCharsets;
|
|
|
|
+import java.util.Iterator;
|
|
|
|
+
|
|
|
|
+/**
|
|
|
|
+ * 告警相关
|
|
|
|
+ */
|
|
|
|
+@RestController
|
|
|
|
+@RequestMapping("/front")
|
|
|
|
+@Slf4j
|
|
|
|
+public class FrontController extends BaseController {
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ @Autowired
|
|
|
|
+ private TXinyiNormConfigMapper tXinyiNormConfigMapper;
|
|
|
|
+
|
|
|
|
+ @Autowired
|
|
|
|
+ private TXinyiRobotMapper robotMapper;
|
|
|
|
+
|
|
|
|
+ @Autowired
|
|
|
|
+ private TXinyiIndustryMapper industryMapper;
|
|
|
|
+
|
|
|
|
+ @Autowired
|
|
|
|
+ private TXinyiDailyMapper dailyMapper;
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * 获取工业库的实时数据
|
|
|
|
+ * @return
|
|
|
|
+ */
|
|
|
|
+ @GetMapping(value = "/realTimeData")
|
|
|
|
+ public AjaxResult realTimeData()
|
|
|
|
+ {
|
|
|
|
+ log.info("进入了调⽤大模型决策接口-第一次");
|
|
|
|
+ return AjaxResult.success("ok");
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+}
|