package com.xcong.excoin.modules.platform.service.impl; import java.util.List; import javax.annotation.Resource; import org.springframework.stereotype.Service; import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; import com.xcong.excoin.common.response.Result; import com.xcong.excoin.modules.platform.dao.PlatformNoticeDao; import com.xcong.excoin.modules.platform.entity.PlatformNoticeEntity; import com.xcong.excoin.modules.platform.service.PlatformNoticeService; @Service public class PlatformNoticeServiceImpl extends ServiceImpl implements PlatformNoticeService { @Resource PlatformNoticeDao platformNoticeDao; @Override public Result findPlatformNoticeList() { QueryWrapper queryWrapper = new QueryWrapper<>(); List paymentMethodList = platformNoticeDao.selectList(queryWrapper); return Result.ok(paymentMethodList); } }