| | |
| | | private WithdrawService withdrawService; |
| | | |
| | | @Override |
| | | public List<UserTrendsVO> userTrends(List<String> cityIds) { |
| | | if (null == cityIds || cityIds.isEmpty()) { |
| | | public List<UserTrendsVO> userTrends(List<String> city) { |
| | | if (null == city || city.isEmpty()) { |
| | | return new ArrayList<>(); |
| | | } |
| | | List<UserTrendsVO> userTrendsList = baseMapper.userTrends(cityIds); |
| | | List<UserTrendsVO> userTrendsList = baseMapper.userTrends(city); |
| | | return null == userTrendsList || userTrendsList.isEmpty() ? new ArrayList<>() : userTrendsList; |
| | | } |
| | | |