|  | @@ -143,7 +143,8 @@ public class AgentServiceImpl extends ServiceImpl<AgentMapper, Agent> implements
 | 
											
												
													
														|  |          Set<Long> backPolicyIds = new HashSet<>();
 |  |          Set<Long> backPolicyIds = new HashSet<>();
 | 
											
												
													
														|  |          agentList.forEach(agent -> {
 |  |          agentList.forEach(agent -> {
 | 
											
												
													
														|  |              gameIds.add(agent.getGameId());
 |  |              gameIds.add(agent.getGameId());
 | 
											
												
													
														|  | -            if (AccountTypeEnum.TENCENT.getValue().equals(agent.getAccountType())) {
 |  | 
 | 
											
												
													
														|  | 
 |  | +            if (AccountTypeEnum.TENCENT_H5.getValue().equals(agent.getAccountType())
 | 
											
												
													
														|  | 
 |  | +                    || AccountTypeEnum.TENCENT_MINI_GAME.getValue().equals(agent.getAccountType())) {
 | 
											
												
													
														|  |                  txAccountIds.add(agent.getAccountId());
 |  |                  txAccountIds.add(agent.getAccountId());
 | 
											
												
													
														|  |              }
 |  |              }
 | 
											
												
													
														|  |              userIds.add(agent.getCreateBy());
 |  |              userIds.add(agent.getCreateBy());
 | 
											
										
											
												
													
														|  | @@ -170,7 +171,7 @@ public class AgentServiceImpl extends ServiceImpl<AgentMapper, Agent> implements
 | 
											
												
													
														|  |          return agentList.stream().map(agent -> {
 |  |          return agentList.stream().map(agent -> {
 | 
											
												
													
														|  |              AgentVO vo = BeanUtil.copy(agent, AgentVO.class);
 |  |              AgentVO vo = BeanUtil.copy(agent, AgentVO.class);
 | 
											
												
													
														|  |              vo.setGameInfo(gameMap.get(agent.getGameId()));
 |  |              vo.setGameInfo(gameMap.get(agent.getGameId()));
 | 
											
												
													
														|  | -            if (AccountTypeEnum.TENCENT.getValue().equals(agent.getAccountType())) {
 |  | 
 | 
											
												
													
														|  | 
 |  | +            if (AccountTypeEnum.TENCENT_H5.getValue().equals(agent.getAccountType())) {
 | 
											
												
													
														|  |                  vo.setUserActionSet(userActionSetMap.get(agent.getAccountId() + "_" + agent.getUserActionSetId()));
 |  |                  vo.setUserActionSet(userActionSetMap.get(agent.getAccountId() + "_" + agent.getUserActionSetId()));
 | 
											
												
													
														|  |              }
 |  |              }
 | 
											
												
													
														|  |              vo.setCreateByName(userMap.get(agent.getCreateBy()));
 |  |              vo.setCreateByName(userMap.get(agent.getCreateBy()));
 |