自动化立体仓库 - WMS系统
#
LSH
2022-08-13 43bf799fc85e18923480b5877e01b46dab28606f
src/main/java/com/zy/asrs/controller/MobileController.java
@@ -327,20 +327,18 @@
    /*...........................赣州新增..............以下.............赣州新增...........................*/
    @PostMapping("/test/startUp/auth")
//    @ManagerAuth(memo = "申请PACK测试")
    @ManagerAuth(memo = "申请PACK测试")
    public synchronized R startUpTestPACK(@RequestBody TestMast testMast) {
        if (Cools.isEmpty(testMast)) {
            return R.parse(BaseRes.PARAM);
        }
        //提交测试系统
        mobileService.startUpTestPACK(testMast);
        mobileService.startUpTestPACK(testMast); //提交测试系统
        return R.ok();
    }
    @PostMapping("/test/suspend/auth")
    @ManagerAuth(memo = "暂停测试")
    public synchronized R suspendTestPACK() {
        mobileService.suspendTestPACK();
        mobileService.suspendTestPACK();  //请求暂停测试
        return R.ok();
    }
    /*...........................赣州新增..............以上.............赣州新增...........................*/