通讯日志

This commit is contained in:
2021-11-18 11:09:52 +08:00
parent d56066ae7f
commit 1766eae057
212 changed files with 1148 additions and 244 deletions

View File

@@ -0,0 +1,26 @@
package com.mt.wms.empty.task;
import com.mt.wms.core.vo.R;
/**
* @Author: liguanghao
* @Date: 2021/11/15 21:55
* @Version 1.0
*/
public class RunTask {
public R runTask() {
//传入任务id,起始点,若终点是窑炉,获取窑炉状态
int kilnStatus = 0;
if (kilnStatus == 0) {//窑炉状态为不可用
return R.failed("目标窑炉不可用!");
}
if (kilnStatus==1){//窑炉可用未满
}
if (kilnStatus==2){//窑炉已满
}
return null;
}
}