This commit is contained in:
2022-07-17 10:23:14 +08:00
2 changed files with 6 additions and 6 deletions

View File

@@ -79,16 +79,16 @@ public class RunTaskUtils {
Map<String, Object> yeya = new HashMap();
//type=1为 入
yeya.put("type", 1);
if ("YYT003".equals(startPoint.getNote())){
if ("YYT003".equals(currTask.getStartPosition())){
yeya.put("number", 3);
}
if ("YYT004".equals(startPoint.getNote())){
if ("YYT004".equals(currTask.getStartPosition())){
yeya.put("number", 4);
}
if ("YYT002".equals(startPoint.getNote())){
if ("YYT002".equals(currTask.getStartPosition())){
yeya.put("number", 2);
}
if ("YYT001".equals(startPoint.getNote())){
if ("YYT001".equals(currTask.getStartPosition())){
yeya.put("number", 1);
}
String yeyaJudgeStatus = JSON.toJSONString(yeya);