dev add complaint all info with pagination
Test Workflow / test (push) Has been cancelled

This commit is contained in:
2026-05-26 16:17:16 +07:00
parent 9891b1d9b2
commit 8a4f299941
2 changed files with 2 additions and 6 deletions
@@ -33,8 +33,7 @@ public class FileInternalControlHandler implements RequestHandler {
@Override
public BaseResponse handle(BaseRequest request) throws Exception {
try {
FileEntityRequest fileRequest = objectMapper.convertValue(
request.getMessageBody(), FileEntityRequest.class);
FileEntityRequest fileRequest = objectMapper.convertValue(request.getMessageBody(), FileEntityRequest.class);
String action = fileRequest.getAction();
switch (action) {
@@ -89,7 +88,7 @@ public class FileInternalControlHandler implements RequestHandler {
try {
String appealId = fileRequest.getAppealId();
Boolean approve = fileRequest.getApprove();
String comment = fileRequest.getComment();
String comment = fileRequest.getComment() == null ? "": fileRequest.getComment();
if (appealId == null || approve == null) {
return new BaseResponse(request.getMsgId(),