| | |
| | | |
| | | result = parentMap.get(bizCode); |
| | | if (null == result) { |
| | | result = parentMap.get(bizCode.substring(0, 3)); |
| | | } |
| | | if (null == result) { |
| | | result = parentMap.get(DEFAULT_MAP_KEY); |
| | | } |
| | | |
| | |
| | | list.add(new ApiTrigger(PushProtocol.SB_NX_2023.getCode(), PushProtocol.SB_NX_2023.getName())); |
| | | list.add(new ApiTrigger(PushProtocol.SB_NX_2024.getCode(), PushProtocol.SB_NX_2024.getName())); |
| | | list.add(new ApiTrigger(PushProtocol.SB_SX_2023.getCode(), PushProtocol.SB_SX_2023.getName())); |
| | | list.add(new ApiTrigger(PushProtocol.SB_SX_2024.getCode(), PushProtocol.SB_SX_2024.getName())); |
| | | return list; |
| | | } |
| | | |