|
@@ -8,6 +8,7 @@ import com.zhongzheng.modules.goods.bo.GoodsCourseAddBo;
|
|
|
import com.zhongzheng.modules.goods.bo.GoodsCourseEditBo;
|
|
import com.zhongzheng.modules.goods.bo.GoodsCourseEditBo;
|
|
|
import com.zhongzheng.modules.goods.bo.GoodsCourseQueryBo;
|
|
import com.zhongzheng.modules.goods.bo.GoodsCourseQueryBo;
|
|
|
import com.zhongzheng.modules.goods.service.IGoodsCourseService;
|
|
import com.zhongzheng.modules.goods.service.IGoodsCourseService;
|
|
|
|
|
+import com.zhongzheng.modules.goods.vo.GoodsCourseMoreVo;
|
|
|
import com.zhongzheng.modules.goods.vo.GoodsCourseVo;
|
|
import com.zhongzheng.modules.goods.vo.GoodsCourseVo;
|
|
|
import lombok.RequiredArgsConstructor;
|
|
import lombok.RequiredArgsConstructor;
|
|
|
import org.springframework.security.access.prepost.PreAuthorize;
|
|
import org.springframework.security.access.prepost.PreAuthorize;
|
|
@@ -55,6 +56,18 @@ public class GoodsCourseController extends BaseController {
|
|
|
return getDataTable(list);
|
|
return getDataTable(list);
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
+ /**
|
|
|
|
|
+ * 查询商品课程关系列表
|
|
|
|
|
+ */
|
|
|
|
|
+ @ApiOperation("批量查询商品课程关系列表")
|
|
|
|
|
+ @PreAuthorize("@ss.hasPermi('system:course:list')")
|
|
|
|
|
+ @GetMapping("/listMore/{ids}")
|
|
|
|
|
+ public TableDataInfo<GoodsCourseMoreVo> listMore(@PathVariable Long[] ids) {
|
|
|
|
|
+ startPage();
|
|
|
|
|
+ List<GoodsCourseMoreVo> list = iGoodsCourseService.selectListMore(Arrays.asList(ids));
|
|
|
|
|
+ return getDataTable(list);
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
/**
|
|
/**
|
|
|
* 导出商品课程关系列表
|
|
* 导出商品课程关系列表
|
|
|
*/
|
|
*/
|