ludc
2024-04-12 52e81ee85d4c2a3fb9d3fcd70eae998272d48cd2
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);
   }
   /**