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

@@ -98,7 +98,7 @@ public class RestOrganizationController {
@ResponseStatus(HttpStatus.OK)
public void delete(@PathVariable final String id) {
_logger.debug("Organizations id {} ", id );
organizationsService.remove(id);
organizationsService.delete(id);
}

View File

@@ -101,7 +101,7 @@ public class RestUserInfoController {
@ResponseStatus(HttpStatus.OK)
public void delete(@PathVariable final String id) {
_logger.debug("UserInfo id {} ", id );
userInfoService.logicDelete(id);
userInfoService.delete(id);
}
@GetMapping(value = { "/.search" }, produces = {MediaType.APPLICATION_JSON_VALUE})