update mybatis-jpa-extra-3.3.0

This commit is contained in:
MaxKey
2024-07-09 20:35:42 +08:00
parent 0199445c51
commit 451c6fc92e
41 changed files with 76 additions and 47 deletions

View File

@@ -103,7 +103,7 @@ public class ScimGroupController {
@ResponseStatus(HttpStatus.OK)
public void delete(@PathVariable final String id) {
_logger.debug("ScimGroup id {} " , id);
groupsService.remove(id);
groupsService.delete(id);
}
@RequestMapping(method = RequestMethod.GET)

View File

@@ -96,7 +96,7 @@ public class ScimOrganizationController {
@ResponseStatus(HttpStatus.OK)
public void delete(@PathVariable final String id) {
_logger.debug("ScimOrganization id {}", id );
organizationsService.remove(id);
organizationsService.delete(id);
}
@RequestMapping(method = RequestMethod.GET)

View File

@@ -108,7 +108,7 @@ public class ScimUserController {
@ResponseStatus(HttpStatus.OK)
public void delete(@PathVariable final String id) {
_logger.debug("ScimUser id {} ", id );
userInfoService.remove(id);
userInfoService.delete(id);
}
@RequestMapping(method = RequestMethod.GET)