| | |
| | | import com.stylefeng.guns.modular.system.dto.BannerVo; |
| | | import com.stylefeng.guns.modular.system.model.Banner; |
| | | import com.stylefeng.guns.modular.system.warpper.res.BannerRes; |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | | import java.util.List; |
| | | |
| | |
| | | * @param position |
| | | * @return |
| | | */ |
| | | List<BannerRes> getBanners(Integer position); |
| | | List<BannerRes> getBanners(@Param("position") Integer position); |
| | | |
| | | List<BannerVo> list(Integer position,Integer sort); |
| | | List<BannerVo> list(@Param("position") Integer position, @Param("sort") Integer sort); |
| | | } |