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

This commit is contained in:
2026-05-26 13:21:01 +07:00
parent 4a85e415a7
commit 16791d35de
4 changed files with 201 additions and 189 deletions
@@ -86,7 +86,7 @@ public class HandlerConfig {
StatisticTokenHandler statisticTokenHandler,
StatisticIncomeHandler statisticIncomeHandler,
MonitoringStatisticHandler monitoringStatisticHandler,
FileEntityHandler file,
FileInteranlInfoHandler fileInfo,
UserInfoHandler userInfoHandler
)
{
@@ -102,7 +102,7 @@ public class HandlerConfig {
map.put(30026, statisticIncomeHandler);
map.put(30027, monitoringStatisticHandler);
map.put(30029, statisticComplaintHandler);
map.put(20005, file);
map.put(40001, fileInfo);
return map;
}
@@ -110,14 +110,12 @@ public class HandlerConfig {
@Bean
public Map<Integer, RequestHandler> internalControlHandler(
ControlComplaintHandler controlComplaintHandler,
UserInfoHandler userInfoHandler,
FileEntityHandler file
UserInfoHandler userInfoHandler
)
{
Map<Integer, RequestHandler> map = new HashMap<>();
map.put(30014, userInfoHandler);
map.put(30030, controlComplaintHandler);
map.put(20005, file);
return map;
}