Browse Source

fix: 是否自检完毕

master
guoapeng 2 months ago
parent
commit
2fb04d2002
  1. 6
      src/main/java/com/iflytop/gd/app/controller/SelfTestController.java

6
src/main/java/com/iflytop/gd/app/controller/SelfTestController.java

@ -30,10 +30,10 @@ public class SelfTestController {
return Result.success(selfTestService.getSelfTestState());
}
@Operation(summary = "自检完毕")
@Operation(summary = "是否自检完毕")
@PostMapping("/finish")
public Result<?> selfTestFinish() throws Exception {
deviceStateService.setSelfTest(true);
public Result<?> selfTestFinish(Boolean mode) throws Exception {
deviceStateService.setSelfTest(mode);
new Thread(() -> {
try {
deviceCommandUtilService.capMotorMove(21);

Loading…
Cancel
Save