MESDataController.java 603 B

12345678910111213141516171819202122232425262728
  1. package com.uas.eis.controller;
  2. import org.springframework.web.bind.annotation.RequestMapping;
  3. import org.springframework.web.bind.annotation.RestController;
  4. import java.util.HashMap;
  5. import java.util.Map;
  6. /**
  7. * @author xiaost
  8. * @date 2021/12/20 17:03
  9. * MES数据写入到中间表
  10. **/
  11. @RestController
  12. public class MESDataController {
  13. /**
  14. * 产品SN工序过站记录
  15. * @param data
  16. * @return
  17. */
  18. @RequestMapping("/api/mes/snStepPass")
  19. public Object query(String data){
  20. Map<String, Object> map = new HashMap<String, Object>();
  21. return null;
  22. }
  23. }