ludc
2024-03-25 41021633bfee5b5c9c57cb888423f3392c530f98
Source/UBCS/ubcs-service/ubcs-deploy/src/main/java/com/vci/ubcs/deploy/controller/DeployAppsController.java
@@ -70,7 +70,7 @@
    */
   @PostMapping("/saveOrUpdateServiceInfo")
   public R saveOrUpdateDefault(@RequestBody DeployAppsVO deployAppsVO) throws ServiceException {
      return R.status(deployAppsService.saveOrUpdateServiceInfo(deployAppsVO));
      return deployAppsService.saveOrUpdateServiceInfo(deployAppsVO);
   }
   /**
@@ -96,7 +96,7 @@
      if(Func.isBlank(serverName)){
         return R.fail("Mandatory parameter service name not found!");
      }
      return deployAppsService.importClassify(files,serverName);
      return deployAppsService.importJarUpdate(files,serverName);
   }
   /**