|
@@ -95,6 +95,7 @@ public class PromoChannelServiceImpl extends ServiceImpl<PromoChannelMapper, Pro
|
|
|
promoChannelListVO.setPitcherGroupId(promoAccountDTO.getPitcherGroupId());
|
|
|
promoChannelListVO.setPitcherGroupName(promoAccountDTO.getPitcherGroupName());
|
|
|
promoChannelListVO.setAccountName(promoAccountDTO.getName());
|
|
|
+ promoChannelListVO.setAccountType(promoAccountDTO.getAccountType());
|
|
|
promoChannelListVO.setAccountTypeName(PromoAccountTypeEnum.getNameByType(promoAccountDTO.getAccountType()));
|
|
|
}
|
|
|
PromoMediaDTO promoMediaDTO = promoMediaMap.get(promoChannelListVO.getMediaId());
|
|
@@ -107,10 +108,10 @@ public class PromoChannelServiceImpl extends ServiceImpl<PromoChannelMapper, Pro
|
|
|
promoChannelListVO.setPlateSite(promoSiteDTO.getPlateSite());
|
|
|
}
|
|
|
GameDTO gameDTO = gameMap.get(promoChannelListVO.getGameId());
|
|
|
- if (gameDTO != null){
|
|
|
+ if (gameDTO != null) {
|
|
|
promoChannelListVO.setGameName(gameDTO.getName());
|
|
|
GameCategoryDTO gameCategoryDTO = gameCategoryMap.get(gameDTO.getCategory());
|
|
|
- if (gameCategoryDTO != null){
|
|
|
+ if (gameCategoryDTO != null) {
|
|
|
promoChannelListVO.setGameCategory(gameCategoryDTO.getId());
|
|
|
promoChannelListVO.setGameCategoryName(gameCategoryDTO.getName());
|
|
|
}
|