add: lms、acs管芯库联调

This commit is contained in:
ls
2024-11-14 14:05:34 +08:00
parent b239b13cc7
commit 8ab477ff28
6 changed files with 112 additions and 66 deletions

View File

@@ -100,12 +100,10 @@ public class NbjOperationServiceImpl implements NbjOperationService {
}
sysNoticeService.createNotice("点位" + deviceCode + "出现" + ("1".equals(type) ? "-满入" : "-空出") + ",请解决",
deviceCode + ("1".equals(type) ? "-满入" : "-空出") + "点位切换", NoticeTypeEnum.NOTIFICATION.getCode());
JSONObject data = new JSONObject();
data.put("device_code", point.getPoint_code());
JSONObject result = new JSONObject();
result.put("status", HttpStatus.OK.value());
result.put("message", "满入空出异常处理请求成功!");
result.put("data", data);
result.put("device_code", point.getPoint_code());
return result;
}
}