| | |
| | |
|
| | | import java.util.List;
|
| | |
|
| | | import org.apache.ibatis.annotations.Param;
|
| | | import org.springframework.web.multipart.MultipartFile;
|
| | |
|
| | | import com.yeshi.fanli.entity.bus.homemodule.SwiperPicture;
|
| | |
| | |
|
| | | public interface SwiperPictureService {
|
| | |
|
| | | public int deleteByPrimaryKey(Long id) throws SwiperPictureException;
|
| | |
|
| | | public int insert(SwiperPicture record) throws SwiperPictureException;
|
| | |
|
| | | public int insertSelective(SwiperPicture record) throws SwiperPictureException;
|
| | |
|
| | |
| | | */
|
| | | public int deleteBatchByBannerID(List<Long> list) throws SwiperPictureException;
|
| | |
|
| | | /**
|
| | | * 上传图片
|
| | | * @param file
|
| | | * @param record
|
| | | * @throws Exception
|
| | | */
|
| | | public void uploadPicture(MultipartFile file, SwiperPicture record) throws Exception;
|
| | |
|
| | | /**
|
| | | * 根据管理id集合 查询
|
| | |
| | | * @return
|
| | | */
|
| | | public int getMaxOrderByBannerID(Long bannerId) throws SwiperPictureException;
|
| | |
|
| | | /**
|
| | | * 根据 唯一标识查询
|
| | | * @param card 唯一标识
|
| | | * @return
|
| | | */
|
| | | public List<SwiperPicture> getByBannerCard(String card) throws SwiperPictureException;
|
| | |
|
| | | /**
|
| | | * 保存信息
|
| | | * @param record
|
| | | * @throws SwiperPictureException
|
| | | */
|
| | | public void saveObject(MultipartFile file, SwiperPicture record, String jumpType) throws SwiperPictureException, Exception;
|
| | | }
|