19 changed files with 673 additions and 10 deletions
@ -0,0 +1,62 @@
|
||||
/* |
||||
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved. |
||||
* |
||||
* Redistribution and use in source and binary forms, with or without |
||||
* modification, are permitted provided that the following conditions are met: |
||||
* |
||||
* Redistributions of source code must retain the above copyright notice, |
||||
* this list of conditions and the following disclaimer. |
||||
* Redistributions in binary form must reproduce the above copyright |
||||
* notice, this list of conditions and the following disclaimer in the |
||||
* documentation and/or other materials provided with the distribution. |
||||
* Neither the name of the dreamlu.net developer nor the names of its |
||||
* contributors may be used to endorse or promote products derived from |
||||
* this software without specific prior written permission. |
||||
* Author: Chill 庄骞 (smallchill@163.com) |
||||
*/ |
||||
package org.springblade.system.entity; |
||||
|
||||
import com.baomidou.mybatisplus.annotation.TableName; |
||||
import io.swagger.annotations.ApiModel; |
||||
import io.swagger.annotations.ApiModelProperty; |
||||
import lombok.Data; |
||||
import lombok.EqualsAndHashCode; |
||||
import org.springblade.core.mp.base.BaseEntity; |
||||
|
||||
/** |
||||
* 顶部菜单表实体类 |
||||
* |
||||
* @author BladeX |
||||
* @since 2019-07-14 |
||||
*/ |
||||
@Data |
||||
@TableName("blade_top_menu") |
||||
@EqualsAndHashCode(callSuper = true) |
||||
@ApiModel(value = "TopMenu对象", description = "顶部菜单表") |
||||
public class TopMenu extends BaseEntity { |
||||
|
||||
private static final long serialVersionUID = 1L; |
||||
|
||||
/** |
||||
* 顶部菜单编号 |
||||
*/ |
||||
@ApiModelProperty(value = "顶部菜单编号") |
||||
private String code; |
||||
/** |
||||
* 顶部菜单名 |
||||
*/ |
||||
@ApiModelProperty(value = "顶部菜单名") |
||||
private String name; |
||||
/** |
||||
* 顶部菜单资源 |
||||
*/ |
||||
@ApiModelProperty(value = "顶部菜单资源") |
||||
private String source; |
||||
/** |
||||
* 顶部菜单排序 |
||||
*/ |
||||
@ApiModelProperty(value = "顶部菜单排序") |
||||
private Integer sort; |
||||
|
||||
|
||||
} |
@ -0,0 +1,38 @@
|
||||
package org.springblade.system.entity; |
||||
|
||||
import com.baomidou.mybatisplus.annotation.IdType; |
||||
import com.baomidou.mybatisplus.annotation.TableId; |
||||
import com.baomidou.mybatisplus.annotation.TableName; |
||||
import com.fasterxml.jackson.databind.annotation.JsonSerialize; |
||||
import com.fasterxml.jackson.databind.ser.std.ToStringSerializer; |
||||
import lombok.Data; |
||||
|
||||
/** |
||||
* TopMenuSetting |
||||
* |
||||
* @author Chill |
||||
*/ |
||||
@Data |
||||
@TableName("blade_top_menu_setting") |
||||
public class TopMenuSetting { |
||||
|
||||
/** |
||||
* 主键id |
||||
*/ |
||||
@JsonSerialize(using = ToStringSerializer.class) |
||||
@TableId(value = "id", type = IdType.ID_WORKER) |
||||
private Long id; |
||||
|
||||
/** |
||||
* 顶部菜单id |
||||
*/ |
||||
@JsonSerialize(using = ToStringSerializer.class) |
||||
private Long topMenuId; |
||||
|
||||
/** |
||||
* 菜单id |
||||
*/ |
||||
@JsonSerialize(using = ToStringSerializer.class) |
||||
private Long menuId; |
||||
|
||||
} |
@ -0,0 +1,130 @@
|
||||
/* |
||||
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved. |
||||
* |
||||
* Redistribution and use in source and binary forms, with or without |
||||
* modification, are permitted provided that the following conditions are met: |
||||
* |
||||
* Redistributions of source code must retain the above copyright notice, |
||||
* this list of conditions and the following disclaimer. |
||||
* Redistributions in binary form must reproduce the above copyright |
||||
* notice, this list of conditions and the following disclaimer in the |
||||
* documentation and/or other materials provided with the distribution. |
||||
* Neither the name of the dreamlu.net developer nor the names of its |
||||
* contributors may be used to endorse or promote products derived from |
||||
* this software without specific prior written permission. |
||||
* Author: Chill 庄骞 (smallchill@163.com) |
||||
*/ |
||||
package org.springblade.system.controller; |
||||
|
||||
import com.baomidou.mybatisplus.core.metadata.IPage; |
||||
import io.swagger.annotations.Api; |
||||
import io.swagger.annotations.ApiOperation; |
||||
import io.swagger.annotations.ApiOperationSupport; |
||||
import io.swagger.annotations.ApiParam; |
||||
import lombok.AllArgsConstructor; |
||||
import org.springblade.core.boot.ctrl.BladeController; |
||||
import org.springblade.core.mp.support.Condition; |
||||
import org.springblade.core.mp.support.Query; |
||||
import org.springblade.core.tool.api.R; |
||||
import org.springblade.core.tool.utils.Func; |
||||
import org.springblade.system.entity.TopMenu; |
||||
import org.springblade.system.service.ITopMenuService; |
||||
import org.springframework.cache.annotation.CacheEvict; |
||||
import org.springframework.web.bind.annotation.*; |
||||
|
||||
import javax.validation.Valid; |
||||
|
||||
import static org.springblade.core.cache.constant.CacheConstant.SYS_CACHE; |
||||
|
||||
/** |
||||
* 顶部菜单表 控制器 |
||||
* |
||||
* @author BladeX |
||||
* @since 2019-07-14 |
||||
*/ |
||||
@RestController |
||||
@AllArgsConstructor |
||||
@RequestMapping("/topmenu") |
||||
@Api(value = "顶部菜单表", tags = "顶部菜单") |
||||
public class TopMenuController extends BladeController { |
||||
|
||||
private ITopMenuService topMenuService; |
||||
|
||||
/** |
||||
* 详情 |
||||
*/ |
||||
@GetMapping("/detail") |
||||
@ApiOperationSupport(order = 1) |
||||
@ApiOperation(value = "详情", notes = "传入topMenu") |
||||
public R<TopMenu> detail(TopMenu topMenu) { |
||||
TopMenu detail = topMenuService.getOne(Condition.getQueryWrapper(topMenu)); |
||||
return R.data(detail); |
||||
} |
||||
|
||||
/** |
||||
* 分页 顶部菜单表 |
||||
*/ |
||||
@GetMapping("/list") |
||||
@ApiOperationSupport(order = 2) |
||||
@ApiOperation(value = "分页", notes = "传入topMenu") |
||||
public R<IPage<TopMenu>> list(TopMenu topMenu, Query query) { |
||||
IPage<TopMenu> pages = topMenuService.page(Condition.getPage(query), Condition.getQueryWrapper(topMenu)); |
||||
return R.data(pages); |
||||
} |
||||
|
||||
/** |
||||
* 新增 顶部菜单表 |
||||
*/ |
||||
@PostMapping("/save") |
||||
@ApiOperationSupport(order = 4) |
||||
@ApiOperation(value = "新增", notes = "传入topMenu") |
||||
public R save(@Valid @RequestBody TopMenu topMenu) { |
||||
return R.status(topMenuService.save(topMenu)); |
||||
} |
||||
|
||||
/** |
||||
* 修改 顶部菜单表 |
||||
*/ |
||||
@PostMapping("/update") |
||||
@ApiOperationSupport(order = 5) |
||||
@ApiOperation(value = "修改", notes = "传入topMenu") |
||||
public R update(@Valid @RequestBody TopMenu topMenu) { |
||||
return R.status(topMenuService.updateById(topMenu)); |
||||
} |
||||
|
||||
/** |
||||
* 新增或修改 顶部菜单表 |
||||
*/ |
||||
@PostMapping("/submit") |
||||
@ApiOperationSupport(order = 6) |
||||
@ApiOperation(value = "新增或修改", notes = "传入topMenu") |
||||
public R submit(@Valid @RequestBody TopMenu topMenu) { |
||||
return R.status(topMenuService.saveOrUpdate(topMenu)); |
||||
} |
||||
|
||||
|
||||
/** |
||||
* 删除 顶部菜单表 |
||||
*/ |
||||
@PostMapping("/remove") |
||||
@ApiOperationSupport(order = 7) |
||||
@ApiOperation(value = "逻辑删除", notes = "传入ids") |
||||
public R remove(@ApiParam(value = "主键集合", required = true) @RequestParam String ids) { |
||||
return R.status(topMenuService.deleteLogic(Func.toLongList(ids))); |
||||
} |
||||
|
||||
/** |
||||
* 设置顶部菜单 |
||||
*/ |
||||
@PostMapping("/grant") |
||||
@ApiOperationSupport(order = 8) |
||||
@ApiOperation(value = "顶部菜单配置", notes = "传入topMenuId集合以及menuId集合") |
||||
@CacheEvict(cacheNames = {SYS_CACHE}, allEntries = true) |
||||
public R grant(@ApiParam(value = "topMenuId集合", required = true) @RequestParam String topMenuIds, |
||||
@ApiParam(value = "menuId集合", required = true) @RequestParam String menuIds) { |
||||
boolean temp = topMenuService.grant(Func.toLongList(topMenuIds), Func.toLongList(menuIds)); |
||||
return R.status(temp); |
||||
} |
||||
|
||||
|
||||
} |
@ -0,0 +1,30 @@
|
||||
/* |
||||
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved. |
||||
* |
||||
* Redistribution and use in source and binary forms, with or without |
||||
* modification, are permitted provided that the following conditions are met: |
||||
* |
||||
* Redistributions of source code must retain the above copyright notice, |
||||
* this list of conditions and the following disclaimer. |
||||
* Redistributions in binary form must reproduce the above copyright |
||||
* notice, this list of conditions and the following disclaimer in the |
||||
* documentation and/or other materials provided with the distribution. |
||||
* Neither the name of the dreamlu.net developer nor the names of its |
||||
* contributors may be used to endorse or promote products derived from |
||||
* this software without specific prior written permission. |
||||
* Author: Chill 庄骞 (smallchill@163.com) |
||||
*/ |
||||
package org.springblade.system.mapper; |
||||
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
||||
import org.springblade.system.entity.TopMenu; |
||||
|
||||
/** |
||||
* 顶部菜单表 Mapper 接口 |
||||
* |
||||
* @author BladeX |
||||
* @since 2019-07-14 |
||||
*/ |
||||
public interface TopMenuMapper extends BaseMapper<TopMenu> { |
||||
|
||||
} |
@ -0,0 +1,21 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?> |
||||
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> |
||||
<mapper namespace="org.springblade.system.mapper.TopMenuMapper"> |
||||
|
||||
<!-- 通用查询映射结果 --> |
||||
<resultMap id="topMenuResultMap" type="org.springblade.system.entity.TopMenu"> |
||||
<result column="id" property="id"/> |
||||
<result column="create_user" property="createUser"/> |
||||
<result column="create_dept" property="createDept"/> |
||||
<result column="create_time" property="createTime"/> |
||||
<result column="update_user" property="updateUser"/> |
||||
<result column="update_time" property="updateTime"/> |
||||
<result column="status" property="status"/> |
||||
<result column="is_deleted" property="isDeleted"/> |
||||
<result column="code" property="code"/> |
||||
<result column="name" property="name"/> |
||||
<result column="source" property="source"/> |
||||
<result column="sort" property="sort"/> |
||||
</resultMap> |
||||
|
||||
</mapper> |
@ -0,0 +1,29 @@
|
||||
/* |
||||
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved. |
||||
* |
||||
* Redistribution and use in source and binary forms, with or without |
||||
* modification, are permitted provided that the following conditions are met: |
||||
* |
||||
* Redistributions of source code must retain the above copyright notice, |
||||
* this list of conditions and the following disclaimer. |
||||
* Redistributions in binary form must reproduce the above copyright |
||||
* notice, this list of conditions and the following disclaimer in the |
||||
* documentation and/or other materials provided with the distribution. |
||||
* Neither the name of the dreamlu.net developer nor the names of its |
||||
* contributors may be used to endorse or promote products derived from |
||||
* this software without specific prior written permission. |
||||
* Author: Chill 庄骞 (smallchill@163.com) |
||||
*/ |
||||
package org.springblade.system.mapper; |
||||
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
||||
import org.springblade.system.entity.TopMenuSetting; |
||||
|
||||
/** |
||||
* Mapper 接口 |
||||
* |
||||
* @author Chill |
||||
*/ |
||||
public interface TopMenuSettingMapper extends BaseMapper<TopMenuSetting> { |
||||
|
||||
} |
@ -0,0 +1,5 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?> |
||||
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> |
||||
<mapper namespace="org.springblade.system.mapper.TopMenuSettingMapper"> |
||||
|
||||
</mapper> |
@ -0,0 +1,42 @@
|
||||
/* |
||||
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved. |
||||
* |
||||
* Redistribution and use in source and binary forms, with or without |
||||
* modification, are permitted provided that the following conditions are met: |
||||
* |
||||
* Redistributions of source code must retain the above copyright notice, |
||||
* this list of conditions and the following disclaimer. |
||||
* Redistributions in binary form must reproduce the above copyright |
||||
* notice, this list of conditions and the following disclaimer in the |
||||
* documentation and/or other materials provided with the distribution. |
||||
* Neither the name of the dreamlu.net developer nor the names of its |
||||
* contributors may be used to endorse or promote products derived from |
||||
* this software without specific prior written permission. |
||||
* Author: Chill 庄骞 (smallchill@163.com) |
||||
*/ |
||||
package org.springblade.system.service; |
||||
|
||||
import org.springblade.core.mp.base.BaseService; |
||||
import org.springblade.system.entity.TopMenu; |
||||
|
||||
import javax.validation.constraints.NotEmpty; |
||||
import java.util.List; |
||||
|
||||
/** |
||||
* 顶部菜单表 服务类 |
||||
* |
||||
* @author BladeX |
||||
* @since 2019-07-14 |
||||
*/ |
||||
public interface ITopMenuService extends BaseService<TopMenu> { |
||||
|
||||
/** |
||||
* 顶部菜单配置 |
||||
* |
||||
* @param topMenuIds 顶部菜单id集合 |
||||
* @param menuIds 菜单id集合 |
||||
* @return 是否成功 |
||||
*/ |
||||
boolean grant(@NotEmpty List<Long> topMenuIds, @NotEmpty List<Long> menuIds); |
||||
|
||||
} |
@ -0,0 +1,29 @@
|
||||
/* |
||||
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved. |
||||
* |
||||
* Redistribution and use in source and binary forms, with or without |
||||
* modification, are permitted provided that the following conditions are met: |
||||
* |
||||
* Redistributions of source code must retain the above copyright notice, |
||||
* this list of conditions and the following disclaimer. |
||||
* Redistributions in binary form must reproduce the above copyright |
||||
* notice, this list of conditions and the following disclaimer in the |
||||
* documentation and/or other materials provided with the distribution. |
||||
* Neither the name of the dreamlu.net developer nor the names of its |
||||
* contributors may be used to endorse or promote products derived from |
||||
* this software without specific prior written permission. |
||||
* Author: Chill 庄骞 (smallchill@163.com) |
||||
*/ |
||||
package org.springblade.system.service; |
||||
|
||||
import com.baomidou.mybatisplus.extension.service.IService; |
||||
import org.springblade.system.entity.TopMenuSetting; |
||||
|
||||
/** |
||||
* 服务类 |
||||
* |
||||
* @author Chill |
||||
*/ |
||||
public interface ITopMenuSettingService extends IService<TopMenuSetting> { |
||||
|
||||
} |
@ -0,0 +1,64 @@
|
||||
/* |
||||
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved. |
||||
* |
||||
* Redistribution and use in source and binary forms, with or without |
||||
* modification, are permitted provided that the following conditions are met: |
||||
* |
||||
* Redistributions of source code must retain the above copyright notice, |
||||
* this list of conditions and the following disclaimer. |
||||
* Redistributions in binary form must reproduce the above copyright |
||||
* notice, this list of conditions and the following disclaimer in the |
||||
* documentation and/or other materials provided with the distribution. |
||||
* Neither the name of the dreamlu.net developer nor the names of its |
||||
* contributors may be used to endorse or promote products derived from |
||||
* this software without specific prior written permission. |
||||
* Author: Chill 庄骞 (smallchill@163.com) |
||||
*/ |
||||
package org.springblade.system.service.impl; |
||||
|
||||
import com.baomidou.mybatisplus.core.toolkit.Wrappers; |
||||
import lombok.AllArgsConstructor; |
||||
import org.springblade.core.mp.base.BaseServiceImpl; |
||||
import org.springblade.system.entity.TopMenu; |
||||
import org.springblade.system.entity.TopMenuSetting; |
||||
import org.springblade.system.mapper.TopMenuMapper; |
||||
import org.springblade.system.service.ITopMenuService; |
||||
import org.springblade.system.service.ITopMenuSettingService; |
||||
import org.springframework.stereotype.Service; |
||||
import org.springframework.transaction.annotation.Transactional; |
||||
|
||||
import javax.validation.constraints.NotEmpty; |
||||
import java.util.ArrayList; |
||||
import java.util.List; |
||||
|
||||
/** |
||||
* 顶部菜单表 服务实现类 |
||||
* |
||||
* @author BladeX |
||||
* @since 2019-07-14 |
||||
*/ |
||||
@Service |
||||
@AllArgsConstructor |
||||
public class TopMenuServiceImpl extends BaseServiceImpl<TopMenuMapper, TopMenu> implements ITopMenuService { |
||||
|
||||
private ITopMenuSettingService topMenuSettingService; |
||||
|
||||
@Override |
||||
@Transactional(rollbackFor = Exception.class) |
||||
public boolean grant(@NotEmpty List<Long> topMenuIds, @NotEmpty List<Long> menuIds) { |
||||
// 删除顶部菜单配置的菜单集合
|
||||
topMenuSettingService.remove(Wrappers.<TopMenuSetting>update().lambda().in(TopMenuSetting::getTopMenuId, topMenuIds)); |
||||
// 组装配置
|
||||
List<TopMenuSetting> menuSettings = new ArrayList<>(); |
||||
topMenuIds.forEach(topMenuId -> menuIds.forEach(menuId -> { |
||||
TopMenuSetting menuSetting = new TopMenuSetting(); |
||||
menuSetting.setTopMenuId(topMenuId); |
||||
menuSetting.setMenuId(menuId); |
||||
menuSettings.add(menuSetting); |
||||
})); |
||||
// 新增配置
|
||||
topMenuSettingService.saveBatch(menuSettings); |
||||
return true; |
||||
} |
||||
|
||||
} |
@ -0,0 +1,33 @@
|
||||
/* |
||||
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved. |
||||
* |
||||
* Redistribution and use in source and binary forms, with or without |
||||
* modification, are permitted provided that the following conditions are met: |
||||
* |
||||
* Redistributions of source code must retain the above copyright notice, |
||||
* this list of conditions and the following disclaimer. |
||||
* Redistributions in binary form must reproduce the above copyright |
||||
* notice, this list of conditions and the following disclaimer in the |
||||
* documentation and/or other materials provided with the distribution. |
||||
* Neither the name of the dreamlu.net developer nor the names of its |
||||
* contributors may be used to endorse or promote products derived from |
||||
* this software without specific prior written permission. |
||||
* Author: Chill 庄骞 (smallchill@163.com) |
||||
*/ |
||||
package org.springblade.system.service.impl; |
||||
|
||||
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; |
||||
import org.springblade.system.entity.TopMenuSetting; |
||||
import org.springblade.system.mapper.TopMenuSettingMapper; |
||||
import org.springblade.system.service.ITopMenuSettingService; |
||||
import org.springframework.stereotype.Service; |
||||
|
||||
/** |
||||
* 服务实现类 |
||||
* |
||||
* @author Chill |
||||
*/ |
||||
@Service |
||||
public class TopMenuSettingServiceImpl extends ServiceImpl<TopMenuSettingMapper, TopMenuSetting> implements ITopMenuSettingService { |
||||
|
||||
} |
File diff suppressed because one or more lines are too long
Loading…
Reference in new issue