Helius
2020-07-07 fae05b7ffe899ab996f7a9c31b4c96df7964a0de
src/main/java/com/xcong/excoin/modules/platform/service/impl/PlatformBannerServiceImpl.java
@@ -18,12 +18,12 @@
@Service
public class PlatformBannerServiceImpl extends ServiceImpl<PlatformBannerDao, PlatformBannerEntity> implements PlatformBannerService{
   @Resource
   PlatformPaymentMethodDao platformPaymentMethodDao;
   PlatformBannerDao platformBannerDao;
   
   @Override
   public Result findAll() {
      QueryWrapper<PlatformPaymentMethodEntity> queryWrapper = new QueryWrapper<>();
      List<PlatformPaymentMethodEntity> paymentMethodList = platformPaymentMethodDao.selectList(queryWrapper);
      QueryWrapper<PlatformBannerEntity> queryWrapper = new QueryWrapper<>();
      List<PlatformBannerEntity> paymentMethodList = platformBannerDao.selectList(queryWrapper);
      return Result.ok(paymentMethodList);
   }