parent
d98df57f62
commit
3b26eccaa8
@ -0,0 +1,99 @@
|
||||
package com.ruoyi.web.controller.home;
|
||||
|
||||
import cn.hutool.core.convert.Convert;
|
||||
import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper;
|
||||
import com.github.pagehelper.PageInfo;
|
||||
import com.github.pagehelper.page.PageMethod;
|
||||
import com.ruoyi.common.core.controller.BaseController;
|
||||
import com.ruoyi.common.core.domain.R;
|
||||
import com.ruoyi.system.domain.SysColumn;
|
||||
import com.ruoyi.system.domain.SysColumnVO;
|
||||
import com.ruoyi.system.domain.SysSpecial;
|
||||
import com.ruoyi.system.service.ISysColumnService;
|
||||
import com.ruoyi.system.service.ISysSpecialService;
|
||||
import io.swagger.annotations.Api;
|
||||
import io.swagger.annotations.ApiOperation;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.web.bind.annotation.*;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* ClassName: LawController
|
||||
* Package: com.ruoyi.web.controller.home
|
||||
* Description:
|
||||
*
|
||||
* @Author wangxy
|
||||
* @Create 2025/1/6 14:35
|
||||
* @Version 1.0
|
||||
*/
|
||||
@Api("法律法规")
|
||||
@RestController
|
||||
@RequestMapping("/law")
|
||||
public class LawController extends BaseController {
|
||||
|
||||
public static final String PAGE_SIZE = "15";
|
||||
|
||||
|
||||
public static final String STATUS = "0";
|
||||
|
||||
|
||||
@Autowired
|
||||
private ISysColumnService columnService;
|
||||
|
||||
@Autowired
|
||||
private ISysSpecialService specialService;
|
||||
|
||||
|
||||
@ApiOperation("类别树")
|
||||
@GetMapping("/getTree")
|
||||
public List<SysColumnVO> getTree(@RequestParam(required = false, defaultValue = "0") String parentId) {
|
||||
LambdaQueryWrapper<SysColumn> tagWrapper = new LambdaQueryWrapper<>();
|
||||
tagWrapper.eq(SysColumn::getParentId, parentId);
|
||||
List<SysColumn> datas = columnService.list(tagWrapper);
|
||||
List<SysColumnVO> tagTreeVOList = new ArrayList<>(Convert.toList(SysColumnVO.class, datas));
|
||||
tagTreeVOList.forEach(this::buildChildren);
|
||||
return tagTreeVOList;
|
||||
}
|
||||
|
||||
/**
|
||||
* 构建子节点
|
||||
*
|
||||
* @param pNode 父级
|
||||
*/
|
||||
private void buildChildren(SysColumnVO pNode) {
|
||||
// 获取子节点
|
||||
LambdaQueryWrapper<SysColumn> tagWrapper = new LambdaQueryWrapper<>();
|
||||
tagWrapper.eq(SysColumn::getParentId, pNode.getColumnId());
|
||||
List<SysColumn> dataTags = columnService.list(tagWrapper);
|
||||
List<SysColumnVO> children = Convert.toList(SysColumnVO.class, dataTags);
|
||||
// 递归获取子节点
|
||||
children.forEach(this::buildChildren);
|
||||
pNode.setChildren(children);
|
||||
}
|
||||
|
||||
@ApiOperation("专题活动")
|
||||
@GetMapping("/special")
|
||||
public R<PageInfo<SysSpecial>> special(@RequestParam(required = false, defaultValue = "1", value = "p") Integer pageNum,
|
||||
@RequestParam(required = false, defaultValue = PAGE_SIZE, value = "ps") Integer pageSize,
|
||||
@RequestParam(required = false) String columnId,
|
||||
@RequestParam(required = false) String specialTitle) {
|
||||
PageMethod.startPage(pageNum, pageSize);
|
||||
SysSpecial sysSpecial = new SysSpecial();
|
||||
sysSpecial.setStatus(STATUS);
|
||||
sysSpecial.setColumnId(columnId);
|
||||
sysSpecial.setSpecialTitle(specialTitle);
|
||||
List<SysSpecial> specialList = specialService.selectSysSpecialList(sysSpecial);
|
||||
PageInfo<SysSpecial> page = new PageInfo<>(specialList, pageSize);
|
||||
return R.ok(page);
|
||||
}
|
||||
|
||||
@ApiOperation("详细")
|
||||
@GetMapping("/view/{specialId}")
|
||||
public R<SysSpecial> getUser(@PathVariable String specialId) {
|
||||
return R.ok(specialService.selectSysSpecialById(specialId));
|
||||
}
|
||||
|
||||
|
||||
}
|
@ -0,0 +1,43 @@
|
||||
package com.ruoyi.system.domain;
|
||||
|
||||
import com.baomidou.mybatisplus.annotation.IdType;
|
||||
import com.baomidou.mybatisplus.annotation.TableField;
|
||||
import com.baomidou.mybatisplus.annotation.TableId;
|
||||
import com.ruoyi.common.core.domain.BaseEntity;
|
||||
import lombok.Data;
|
||||
import lombok.EqualsAndHashCode;
|
||||
import lombok.experimental.Accessors;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 菜单权限表 sys_menu
|
||||
*
|
||||
* @author ruoyi
|
||||
*/
|
||||
@Data
|
||||
@EqualsAndHashCode(callSuper = false)
|
||||
@Accessors(chain = true)
|
||||
public class SysColumnVO implements Serializable {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
|
||||
private String columnId;
|
||||
|
||||
/** 菜单名称 */
|
||||
private String columnName;
|
||||
|
||||
|
||||
private String columnCode;
|
||||
|
||||
|
||||
/** 父菜单ID */
|
||||
private String parentId;
|
||||
|
||||
|
||||
private List<SysColumnVO> children ;
|
||||
|
||||
|
||||
}
|
Loading…
Reference in new issue