fix
Helius
2021-11-05 cff2dfcd7e820147af9f8c3e45b0cdfde4801b64
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);
   }