|
@@ -222,7 +222,7 @@ public class GameTencentMiniGameCallbackServiceImpl extends ServiceImpl<GameTenc
|
|
|
}
|
|
|
|
|
|
@Override
|
|
|
- public Map<String, Object> getCallBackByOpenId(Long gameId, String wechatOpenid) {
|
|
|
+ public Map<String, String> getCallBackByOpenId(Long gameId, String wechatOpenid) {
|
|
|
//查询监测链接
|
|
|
GameTencentMiniGameCallback tencentMiniGameCallback = super.getOne(
|
|
|
new LambdaQueryWrapper<GameTencentMiniGameCallback>()
|
|
@@ -234,12 +234,12 @@ public class GameTencentMiniGameCallbackServiceImpl extends ServiceImpl<GameTenc
|
|
|
if (tencentMiniGameCallback == null) {
|
|
|
return null;
|
|
|
}
|
|
|
- Map<String, Object> map = new HashMap<>(5);
|
|
|
- map.put("id", tencentMiniGameCallback.getId());
|
|
|
- map.put("gameId", tencentMiniGameCallback.getGameId());
|
|
|
- map.put("accountId", tencentMiniGameCallback.getAccountId());
|
|
|
+ Map<String, String> map = new HashMap<>(5);
|
|
|
+ map.put("id", tencentMiniGameCallback.getId().toString());
|
|
|
+ map.put("gameId", tencentMiniGameCallback.getGameId().toString());
|
|
|
+ map.put("accountId", tencentMiniGameCallback.getAccountId().toString());
|
|
|
map.put("agentKey", tencentMiniGameCallback.getAgentKey());
|
|
|
- map.put("adgroupId", tencentMiniGameCallback.getAdgroupId());
|
|
|
+ map.put("adgroupId", tencentMiniGameCallback.getAdgroupId().toString());
|
|
|
map.put("impressionId", tencentMiniGameCallback.getImpressionId());
|
|
|
return map;
|
|
|
}
|