dev add tariff info and control
Test Workflow / test (push) Has been cancelled

This commit is contained in:
2026-05-27 16:15:36 +07:00
parent ca9a7478f4
commit 71cd0ebf10
8 changed files with 304 additions and 8 deletions
@@ -87,6 +87,7 @@ public class HandlerConfig {
StatisticIncomeHandler statisticIncomeHandler,
MonitoringStatisticHandler monitoringStatisticHandler,
FileInteranlInfoHandler fileInfo,
TariffInformationHandler tariffInformationHandler,
UserInfoHandler userInfoHandler
)
{
@@ -103,6 +104,7 @@ public class HandlerConfig {
map.put(30027, monitoringStatisticHandler);
map.put(30029, statisticComplaintHandler);
map.put(40001, fileInfo);
map.put(40004, tariffInformationHandler);
return map;
}
@@ -111,6 +113,7 @@ public class HandlerConfig {
public Map<Integer, RequestHandler> internalControlHandler(
ControlComplaintHandler controlComplaintHandler,
FileInternalControlHandler fileInternalControlHandler,
TariffControlHandler tariffControlHandler,
UserInfoHandler userInfoHandler
)
{
@@ -118,6 +121,7 @@ public class HandlerConfig {
map.put(30014, userInfoHandler);
map.put(30030, controlComplaintHandler);
map.put(40002, fileInternalControlHandler);
map.put(40003, tariffControlHandler);
return map;
}