admin
2019-04-15 debb3a579f798d71072f037f74e3e6b43b5fe0ee
fanli/src/main/java/com/yeshi/fanli/service/impl/homemodule/SwiperBannerServiceImpl.java
@@ -28,22 +28,22 @@
   
   
   @Override
   public int deleteByPrimaryKey(Long id)  throws SwiperBannerException{
   public int deleteByPrimaryKey(Long id){
      return swiperBannerMapper.deleteByPrimaryKey(id);
   }
   @Override
   public int insert(SwiperBanner record) throws SwiperBannerException{
   public int insert(SwiperBanner record){
      return swiperBannerMapper.insert(record);
   }
   @Override
   public int insertSelective(SwiperBanner record) throws SwiperBannerException{
   public int insertSelective(SwiperBanner record){
      return swiperBannerMapper.insertSelective(record);
   }
   @Override
   public SwiperBanner selectByPrimaryKey(Long id) throws SwiperBannerException{
   public SwiperBanner selectByPrimaryKey(Long id){
      return swiperBannerMapper.selectByPrimaryKey(id);
   }
@@ -89,5 +89,9 @@
      return swiperBannerMapper.deleteBatchByPrimaryKey(list);
   }
   
   @Override
   public List<SwiperBanner> getEffectiveOption() {
      return swiperBannerMapper.getEffectiveOption();
   }
}