| | |
| | | |
| | | import com.baomidou.mybatisplus.service.impl.ServiceImpl; |
| | | import com.stylefeng.guns.modular.system.dao.BannerMapper; |
| | | import com.stylefeng.guns.modular.system.dto.BannerVo; |
| | | import com.stylefeng.guns.modular.system.model.Banner; |
| | | import com.stylefeng.guns.modular.system.service.IBannerService; |
| | | import com.stylefeng.guns.modular.system.warpper.res.BannerRes; |
| | |
| | | public List<BannerRes> getBanners(Integer position) { |
| | | return this.baseMapper.getBanners(position); |
| | | } |
| | | |
| | | @Override |
| | | public List<BannerVo> list(Integer position,Integer sort) { |
| | | return this.baseMapper.list(position,sort); |
| | | } |
| | | } |