xiaoyong931011
2020-06-08 c326372b71da84c449b6097af5e281cd6fb46e2c
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);
   }