|
@@ -3,6 +3,8 @@ package com.zhjq.controller;
|
|
|
import java.util.List;
|
|
|
import javax.servlet.http.HttpServletResponse;
|
|
|
|
|
|
+import com.zhjq.common.core.domain.entity.ZhjqColumn;
|
|
|
+import com.zhjq.domain.ZhjqAppCarouselDto;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.web.bind.annotation.GetMapping;
|
|
|
import org.springframework.web.bind.annotation.PostMapping;
|
|
@@ -88,4 +90,12 @@ public class ZhjqAppCarouselController extends BaseController {
|
|
|
public AjaxResult remove(@PathVariable Long[] ids) {
|
|
|
return toAjax(zhjqAppCarouselService.deleteZhjqAppCarouselByIds(ids));
|
|
|
}
|
|
|
+ /**
|
|
|
+ * 小程序轮播管理列表
|
|
|
+ */
|
|
|
+ @GetMapping("/carouselList")
|
|
|
+ public AjaxResult carouselList() {
|
|
|
+ ZhjqAppCarouselDto zhjqAppCarousel = new ZhjqAppCarouselDto();
|
|
|
+ return success(zhjqAppCarouselService.selectcarouselList(zhjqAppCarousel));
|
|
|
+ }
|
|
|
}
|