|
@@ -1,11 +1,12 @@
|
|
package com.miaxis.carousel.service;
|
|
package com.miaxis.carousel.service;
|
|
|
|
|
|
-import java.util.List;
|
|
|
|
-import com.miaxis.carousel.domain.CarouselChartInfo;
|
|
|
|
import com.baomidou.mybatisplus.extension.service.IService;
|
|
import com.baomidou.mybatisplus.extension.service.IService;
|
|
|
|
+import com.miaxis.carousel.domain.CarouselChartInfo;
|
|
import com.miaxis.carousel.vo.CarouselChartInfoVo;
|
|
import com.miaxis.carousel.vo.CarouselChartInfoVo;
|
|
import com.miaxis.common.core.domain.Response;
|
|
import com.miaxis.common.core.domain.Response;
|
|
|
|
|
|
|
|
+import java.util.List;
|
|
|
|
+
|
|
/**
|
|
/**
|
|
* 轮播图Service接口
|
|
* 轮播图Service接口
|
|
*
|
|
*
|
|
@@ -36,6 +37,13 @@ public interface ICarouselChartInfoService extends IService<CarouselChartInfo>{
|
|
*/
|
|
*/
|
|
Response<Integer> updateCarouselChartInfoById(CarouselChartInfo carouselChartInfo);
|
|
Response<Integer> updateCarouselChartInfoById(CarouselChartInfo carouselChartInfo);
|
|
|
|
|
|
|
|
+ /**
|
|
|
|
+ * 获取轮播图详细信息
|
|
|
|
+ * @param id
|
|
|
|
+ * @return
|
|
|
|
+ */
|
|
|
|
+ Response<CarouselChartInfoVo> getCarouselChartById(Long id);
|
|
|
|
+
|
|
/**
|
|
/**
|
|
* 删除轮播图(伪删除)
|
|
* 删除轮播图(伪删除)
|
|
* @param ids
|
|
* @param ids
|
|
@@ -49,5 +57,4 @@ public interface ICarouselChartInfoService extends IService<CarouselChartInfo>{
|
|
* @return
|
|
* @return
|
|
*/
|
|
*/
|
|
List<CarouselChartInfoVo> getCarouselChartList();
|
|
List<CarouselChartInfoVo> getCarouselChartList();
|
|
-
|
|
|
|
}
|
|
}
|