zainali5120
2020-10-17 53bc6ea0abbeb39146502a40292e6562c5a736d7
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);
   }