feat:配置修改

law-v2025-01
wangxy 3 months ago
parent d98df57f62
commit 3b26eccaa8

@ -2,6 +2,7 @@ package com.ruoyi.web.controller.home;
import cn.hutool.core.collection.CollUtil;
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;
@ -18,7 +19,9 @@ import org.springframework.stereotype.Controller;
import org.springframework.ui.ModelMap;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.ResponseBody;
import java.util.ArrayList;
import java.util.List;
import java.util.stream.Collectors;
@ -343,5 +346,4 @@ public class HomeController {
}
}

@ -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));
}
}

@ -314,6 +314,7 @@ public class ShiroConfig
filterChainDefinitionMap.put("/public_view.html", "anon");
filterChainDefinitionMap.put("/profile/**", "anon");
filterChainDefinitionMap.put("/search", "anon");
filterChainDefinitionMap.put("/law/**", "anon");
// 系统权限列表
// filterChainDefinitionMap.putAll(SpringUtils.getBean(IMenuService.class).selectPermsAll());

@ -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 ;
}

@ -33,7 +33,8 @@
</select>
<select id="selectSysSpecialList" parameterType="SysSpecial" resultMap="SysSpecialResult">
<include refid="selectSysSpecialVo"/>
select special_id, special_title, status, create_by, create_time, update_by, update_time, remark,type,column_id,column_name
from sys_special
<where>
<if test="specialTitle != null and specialTitle != ''">
AND special_title like concat('%', #{specialTitle}, '%')
@ -44,7 +45,7 @@
<if test="status != null">
AND status = #{status}
</if>
<if test="columnId != null">
<if test="columnId != null and columnId != ''">
AND column_id = #{columnId}
</if>
</where>

Loading…
Cancel
Save