|
|
@@ -0,0 +1,28 @@
|
|
|
+package com.uas.eis.controller;
|
|
|
+
|
|
|
+import org.springframework.web.bind.annotation.RequestMapping;
|
|
|
+import org.springframework.web.bind.annotation.RestController;
|
|
|
+
|
|
|
+import java.util.HashMap;
|
|
|
+import java.util.Map;
|
|
|
+
|
|
|
+/**
|
|
|
+ * @author xiaost
|
|
|
+ * @date 2021/12/20 17:03
|
|
|
+ * MES数据写入到中间表
|
|
|
+ **/
|
|
|
+@RestController
|
|
|
+public class MESDataController {
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 产品SN工序过站记录
|
|
|
+ * @param data
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ @RequestMapping("/api/mes/snStepPass")
|
|
|
+ public Object query(String data){
|
|
|
+ Map<String, Object> map = new HashMap<String, Object>();
|
|
|
+ return null;
|
|
|
+ }
|
|
|
+
|
|
|
+}
|