fix work controller code 20001,20002
Test Workflow / test (push) Successful in 3s

This commit is contained in:
vladp
2025-12-10 15:27:14 +07:00
parent 9ef192ed32
commit 420734ff87
16 changed files with 111 additions and 189 deletions
@@ -35,10 +35,7 @@ public class GlobalExceptionHandler {
return ResponseEntity
.ok()
.body(Map.of(
"msg_id", ex.getMessageId(),
"message_code", ex.getMessageCode(),
"message_desc", ex.getMessageDescription()));
.body(ex.getBaseResponse());
}
@ExceptionHandler(UserNotFoundException.class)