Commit 025b3b12 authored by wanghao's avatar wanghao

1 老化柜层 加上 上料 和 下料操作

2 设置 回零 和 停止操作 机械臂
parent 6452389e
...@@ -83,16 +83,16 @@ public class TStoreyInfoController extends BaseController ...@@ -83,16 +83,16 @@ public class TStoreyInfoController extends BaseController
/** /**
* 处理喂食 * 处理喂食
*/ */
@GetMapping(value = "/handleFeeding") @GetMapping(value = "/handleFeeding/{command}")
public AjaxResult handleFeeding(String command) { public AjaxResult handleFeeding(@PathVariable("command") String command) {
return tStoreyInfoService.handleFeeding(command); return tStoreyInfoService.handleFeeding(command);
} }
/** /**
* 处理消 blanking * 处理消 blanking
*/ */
@GetMapping(value = "/handleBlanking") @GetMapping(value = "/handleBlanking/{command}")
public AjaxResult handleBlanking(String command) { public AjaxResult handleBlanking(@PathVariable("command") String command) {
return tStoreyInfoService.handleBlanking(command); return tStoreyInfoService.handleBlanking(command);
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment