Commit 893033cc by 吴迪

【修改】优化树形结构查询

parent 2ddc7c6d
package io.office.modules.manage.controller;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
import java.util.Map;
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
import io.office.modules.manage.entity.NewsColumnEntity;
import org.apache.shiro.authz.annotation.RequiresPermissions;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestBody;
......@@ -96,8 +94,8 @@ public class NewsclassController {
*/
//@Login //标识必须登录状态下才能请求此接口
@RequestMapping("/getNewsClassList")
public R getNewsClassList(){
return R.ok().put("data",newsclassService.getNewsClassList());
public R getNewsClassList(@RequestBody List<Integer> ids){
return R.ok().put("data",newsclassService.getNewsClassList(ids));
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment