| | |
| | |
|
| | | import javax.annotation.Resource;
|
| | |
|
| | | import com.yeshi.fanli.entity.SystemEnum;
|
| | | import org.springframework.stereotype.Service;
|
| | | import org.springframework.transaction.annotation.Transactional;
|
| | | import org.yeshi.utils.tencentcloud.COSManager;
|
| | |
| | | }
|
| | |
|
| | | @Override
|
| | | public List<SwiperBanner> query(long start, int count, String key, Integer sort){
|
| | | return swiperBannerMapper.query(start, count, key, sort);
|
| | | public List<SwiperBanner> query(long start, int count, String key, Integer sort, SystemEnum system) {
|
| | | return swiperBannerMapper.query(start, count, key, sort, system);
|
| | | }
|
| | |
|
| | | @Override
|
| | | public long countQuery(String key) {
|
| | | return swiperBannerMapper.countQuery(key);
|
| | | public long countQuery(String key, SystemEnum system) {
|
| | | return swiperBannerMapper.countQuery(key, system);
|
| | | }
|
| | |
|
| | | @Override
|
| | |
| | | }
|
| | |
|
| | | @Override
|
| | | public List<SwiperBanner> getEffectiveOption() {
|
| | | return swiperBannerMapper.getEffectiveOption();
|
| | | public List<SwiperBanner> getEffectiveOption(SystemEnum system) {
|
| | | return swiperBannerMapper.getEffectiveOption(system);
|
| | | }
|
| | | }
|
| | |
|