Commit 025b3b12 authored by wanghao's avatar wanghao

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

2 设置 回零 和 停止操作 机械臂
parent 6452389e
......@@ -83,16 +83,16 @@ public class TStoreyInfoController extends BaseController
/**
* 处理喂食
*/
@GetMapping(value = "/handleFeeding")
public AjaxResult handleFeeding(String command) {
@GetMapping(value = "/handleFeeding/{command}")
public AjaxResult handleFeeding(@PathVariable("command") String command) {
return tStoreyInfoService.handleFeeding(command);
}
/**
* 处理消 blanking
*/
@GetMapping(value = "/handleBlanking")
public AjaxResult handleBlanking(String command) {
@GetMapping(value = "/handleBlanking/{command}")
public AjaxResult handleBlanking(@PathVariable("command") String 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