26 changed files with 1728 additions and 558 deletions
@ -0,0 +1,90 @@
|
||||
/* |
||||
* 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.cache; |
||||
|
||||
import org.springblade.core.cache.utils.CacheUtil; |
||||
import org.springblade.core.tool.api.R; |
||||
import org.springblade.core.tool.utils.SpringUtil; |
||||
import org.springblade.core.tool.utils.StringPool; |
||||
import org.springblade.system.entity.DictBiz; |
||||
import org.springblade.system.feign.IDictBizClient; |
||||
|
||||
import java.util.List; |
||||
|
||||
import static org.springblade.core.cache.constant.CacheConstant.DICT_CACHE; |
||||
|
||||
/** |
||||
* 业务字典缓存工具类 |
||||
* |
||||
* @author Chill |
||||
*/ |
||||
public class DictBizCache { |
||||
|
||||
private static final String DICT_ID = "dictBiz:id:"; |
||||
private static final String DICT_VALUE = "dictBiz:value:"; |
||||
private static final String DICT_LIST = "dictBiz:list:"; |
||||
|
||||
private static IDictBizClient dictClient; |
||||
|
||||
private static IDictBizClient getDictClient() { |
||||
if (dictClient == null) { |
||||
dictClient = SpringUtil.getBean(IDictBizClient.class); |
||||
} |
||||
return dictClient; |
||||
} |
||||
|
||||
/** |
||||
* 获取字典实体 |
||||
* |
||||
* @param id 主键 |
||||
* @return |
||||
*/ |
||||
public static DictBiz getById(Long id) { |
||||
return CacheUtil.get(DICT_CACHE, DICT_ID, id, () -> { |
||||
R<DictBiz> result = getDictClient().getById(id); |
||||
return result.getData(); |
||||
}); |
||||
} |
||||
|
||||
/** |
||||
* 获取字典值 |
||||
* |
||||
* @param code 字典编号 |
||||
* @param dictKey 字典键 |
||||
* @return |
||||
*/ |
||||
public static String getValue(String code, Integer dictKey) { |
||||
return CacheUtil.get(DICT_CACHE, DICT_VALUE + code + StringPool.COLON, dictKey, () -> { |
||||
R<String> result = getDictClient().getValue(code, dictKey); |
||||
return result.getData(); |
||||
}); |
||||
} |
||||
|
||||
/** |
||||
* 获取字典集合 |
||||
* |
||||
* @param code 字典编号 |
||||
* @return |
||||
*/ |
||||
public static List<DictBiz> getList(String code) { |
||||
return CacheUtil.get(DICT_CACHE, DICT_LIST, code, () -> { |
||||
R<List<DictBiz>> result = getDictClient().getList(code); |
||||
return result.getData(); |
||||
}); |
||||
} |
||||
|
||||
} |
@ -0,0 +1,108 @@
|
||||
/* |
||||
* 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.IdType; |
||||
import com.baomidou.mybatisplus.annotation.TableId; |
||||
import com.baomidou.mybatisplus.annotation.TableLogic; |
||||
import com.baomidou.mybatisplus.annotation.TableName; |
||||
import com.fasterxml.jackson.databind.annotation.JsonSerialize; |
||||
import com.fasterxml.jackson.databind.ser.std.ToStringSerializer; |
||||
import io.swagger.annotations.ApiModel; |
||||
import io.swagger.annotations.ApiModelProperty; |
||||
import lombok.Data; |
||||
|
||||
import java.io.Serializable; |
||||
|
||||
/** |
||||
* 实体类 |
||||
* |
||||
* @author Chill |
||||
*/ |
||||
@Data |
||||
@TableName("blade_dict_biz") |
||||
@ApiModel(value = "DictBiz对象", description = "DictBiz对象") |
||||
public class DictBiz implements Serializable { |
||||
|
||||
private static final long serialVersionUID = 1L; |
||||
|
||||
/** |
||||
* 主键 |
||||
*/ |
||||
@JsonSerialize(using = ToStringSerializer.class) |
||||
@ApiModelProperty(value = "主键") |
||||
@TableId(value = "id", type = IdType.ID_WORKER) |
||||
private Long id; |
||||
|
||||
/** |
||||
* 租户ID |
||||
*/ |
||||
@ApiModelProperty(value = "租户ID") |
||||
private String tenantId; |
||||
|
||||
/** |
||||
* 父主键 |
||||
*/ |
||||
@JsonSerialize(using = ToStringSerializer.class) |
||||
@ApiModelProperty(value = "父主键") |
||||
private Long parentId; |
||||
|
||||
/** |
||||
* 字典码 |
||||
*/ |
||||
@ApiModelProperty(value = "字典码") |
||||
private String code; |
||||
|
||||
/** |
||||
* 字典值 |
||||
*/ |
||||
@ApiModelProperty(value = "字典值") |
||||
private String dictKey; |
||||
|
||||
/** |
||||
* 字典名称 |
||||
*/ |
||||
@ApiModelProperty(value = "字典名称") |
||||
private String dictValue; |
||||
|
||||
/** |
||||
* 排序 |
||||
*/ |
||||
@ApiModelProperty(value = "排序") |
||||
private Integer sort; |
||||
|
||||
/** |
||||
* 字典备注 |
||||
*/ |
||||
@ApiModelProperty(value = "字典备注") |
||||
private String remark; |
||||
|
||||
/** |
||||
* 是否已封存 |
||||
*/ |
||||
@ApiModelProperty(value = "是否已封存") |
||||
private Integer isSealed; |
||||
|
||||
/** |
||||
* 是否已删除 |
||||
*/ |
||||
@TableLogic |
||||
@ApiModelProperty(value = "是否已删除") |
||||
private Integer isDeleted; |
||||
|
||||
|
||||
} |
@ -0,0 +1,73 @@
|
||||
/* |
||||
* 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.feign; |
||||
|
||||
|
||||
import org.springblade.core.launch.constant.AppConstant; |
||||
import org.springblade.core.tool.api.R; |
||||
import org.springblade.system.entity.DictBiz; |
||||
import org.springframework.cloud.openfeign.FeignClient; |
||||
import org.springframework.web.bind.annotation.GetMapping; |
||||
import org.springframework.web.bind.annotation.RequestParam; |
||||
|
||||
import java.util.List; |
||||
|
||||
/** |
||||
* Feign接口类 |
||||
* |
||||
* @author Chill |
||||
*/ |
||||
@FeignClient( |
||||
value = AppConstant.APPLICATION_SYSTEM_NAME, |
||||
fallback = IDictBizClientFallback.class |
||||
) |
||||
public interface IDictBizClient { |
||||
|
||||
String API_PREFIX = "/client"; |
||||
String GET_BY_ID = API_PREFIX + "/dict-biz/get-by-id"; |
||||
String GET_VALUE = API_PREFIX + "/dict-biz/get-value"; |
||||
String GET_LIST = API_PREFIX + "/dict-biz/get-list"; |
||||
|
||||
/** |
||||
* 获取字典实体 |
||||
* |
||||
* @param id 主键 |
||||
* @return |
||||
*/ |
||||
@GetMapping(GET_BY_ID) |
||||
R<DictBiz> getById(@RequestParam("id") Long id); |
||||
|
||||
/** |
||||
* 获取字典表对应值 |
||||
* |
||||
* @param code 字典编号 |
||||
* @param dictKey 字典序号 |
||||
* @return |
||||
*/ |
||||
@GetMapping(GET_VALUE) |
||||
R<String> getValue(@RequestParam("code") String code, @RequestParam("dictKey") Integer dictKey); |
||||
|
||||
/** |
||||
* 获取字典表 |
||||
* |
||||
* @param code 字典编号 |
||||
* @return |
||||
*/ |
||||
@GetMapping(GET_LIST) |
||||
R<List<DictBiz>> getList(@RequestParam("code") String code); |
||||
|
||||
} |
@ -0,0 +1,46 @@
|
||||
/* |
||||
* 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.feign; |
||||
|
||||
import org.springblade.core.tool.api.R; |
||||
import org.springblade.system.entity.DictBiz; |
||||
import org.springframework.stereotype.Component; |
||||
|
||||
import java.util.List; |
||||
|
||||
/** |
||||
* Feign失败配置 |
||||
* |
||||
* @author Chill |
||||
*/ |
||||
@Component |
||||
public class IDictBizClientFallback implements IDictBizClient { |
||||
@Override |
||||
public R<DictBiz> getById(Long id) { |
||||
return R.fail("获取数据失败"); |
||||
} |
||||
|
||||
@Override |
||||
public R<String> getValue(String code, Integer dictKey) { |
||||
return R.fail("获取数据失败"); |
||||
} |
||||
|
||||
@Override |
||||
public R<List<DictBiz>> getList(String code) { |
||||
return R.fail("获取数据失败"); |
||||
} |
||||
} |
@ -0,0 +1,71 @@
|
||||
/* |
||||
* 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.vo; |
||||
|
||||
import com.fasterxml.jackson.annotation.JsonInclude; |
||||
import com.fasterxml.jackson.databind.annotation.JsonSerialize; |
||||
import com.fasterxml.jackson.databind.ser.std.ToStringSerializer; |
||||
import io.swagger.annotations.ApiModel; |
||||
import lombok.Data; |
||||
import lombok.EqualsAndHashCode; |
||||
import org.springblade.core.tool.node.INode; |
||||
import org.springblade.system.entity.DictBiz; |
||||
|
||||
import java.util.ArrayList; |
||||
import java.util.List; |
||||
|
||||
/** |
||||
* 视图实体类 |
||||
* |
||||
* @author Chill |
||||
*/ |
||||
@Data |
||||
@EqualsAndHashCode(callSuper = true) |
||||
@ApiModel(value = "DictBizVO对象", description = "DictBizVO对象") |
||||
public class DictBizVO extends DictBiz implements INode { |
||||
private static final long serialVersionUID = 1L; |
||||
/** |
||||
* 主键ID |
||||
*/ |
||||
@JsonSerialize(using = ToStringSerializer.class) |
||||
private Long id; |
||||
|
||||
/** |
||||
* 父节点ID |
||||
*/ |
||||
@JsonSerialize(using = ToStringSerializer.class) |
||||
private Long parentId; |
||||
|
||||
/** |
||||
* 子孙节点 |
||||
*/ |
||||
@JsonInclude(JsonInclude.Include.NON_EMPTY) |
||||
private List<INode> children; |
||||
|
||||
@Override |
||||
public List<INode> getChildren() { |
||||
if (this.children == null) { |
||||
this.children = new ArrayList<>(); |
||||
} |
||||
return this.children; |
||||
} |
||||
|
||||
/** |
||||
* 上级字典 |
||||
*/ |
||||
private String parentName; |
||||
} |
@ -0,0 +1,162 @@
|
||||
/* |
||||
* 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.*; |
||||
import lombok.AllArgsConstructor; |
||||
import org.springblade.common.constant.CommonConstant; |
||||
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.node.INode; |
||||
import org.springblade.system.entity.DictBiz; |
||||
import org.springblade.system.service.IDictBizService; |
||||
import org.springblade.system.vo.DictBizVO; |
||||
import org.springblade.system.wrapper.DictBizWrapper; |
||||
import org.springframework.cache.annotation.CacheEvict; |
||||
import org.springframework.web.bind.annotation.*; |
||||
import springfox.documentation.annotations.ApiIgnore; |
||||
|
||||
import javax.validation.Valid; |
||||
import java.util.List; |
||||
import java.util.Map; |
||||
|
||||
import static org.springblade.core.cache.constant.CacheConstant.SYS_CACHE; |
||||
|
||||
/** |
||||
* 控制器 |
||||
* |
||||
* @author Chill |
||||
*/ |
||||
@RestController |
||||
@AllArgsConstructor |
||||
@RequestMapping("/dict-biz") |
||||
@Api(value = "业务字典", tags = "业务字典") |
||||
public class DictBizController extends BladeController { |
||||
|
||||
private IDictBizService dictService; |
||||
|
||||
/** |
||||
* 详情 |
||||
*/ |
||||
@GetMapping("/detail") |
||||
@ApiOperationSupport(order = 1) |
||||
@ApiOperation(value = "详情", notes = "传入dict") |
||||
public R<DictBizVO> detail(DictBiz dict) { |
||||
DictBiz detail = dictService.getOne(Condition.getQueryWrapper(dict)); |
||||
return R.data(DictBizWrapper.build().entityVO(detail)); |
||||
} |
||||
|
||||
/** |
||||
* 列表 |
||||
*/ |
||||
@GetMapping("/list") |
||||
@ApiImplicitParams({ |
||||
@ApiImplicitParam(name = "code", value = "字典编号", paramType = "query", dataType = "string"), |
||||
@ApiImplicitParam(name = "dictValue", value = "字典名称", paramType = "query", dataType = "string") |
||||
}) |
||||
@ApiOperationSupport(order = 2) |
||||
@ApiOperation(value = "列表", notes = "传入dict") |
||||
public R<List<INode>> list(@ApiIgnore @RequestParam Map<String, Object> dict) { |
||||
List<DictBiz> list = dictService.list(Condition.getQueryWrapper(dict, DictBiz.class).lambda().orderByAsc(DictBiz::getSort)); |
||||
return R.data(DictBizWrapper.build().listNodeVO(list)); |
||||
} |
||||
|
||||
/** |
||||
* 顶级列表 |
||||
*/ |
||||
@GetMapping("/parent-list") |
||||
@ApiImplicitParams({ |
||||
@ApiImplicitParam(name = "code", value = "字典编号", paramType = "query", dataType = "string"), |
||||
@ApiImplicitParam(name = "dictValue", value = "字典名称", paramType = "query", dataType = "string") |
||||
}) |
||||
@ApiOperationSupport(order = 3) |
||||
@ApiOperation(value = "列表", notes = "传入dict") |
||||
public R<IPage<DictBizVO>> parentList(@ApiIgnore @RequestParam Map<String, Object> dict, Query query) { |
||||
IPage<DictBiz> page = dictService.page(Condition.getPage(query), Condition.getQueryWrapper(dict, DictBiz.class).lambda().eq(DictBiz::getParentId, CommonConstant.TOP_PARENT_ID).orderByAsc(DictBiz::getSort)); |
||||
return R.data(DictBizWrapper.build().pageVO(page)); |
||||
} |
||||
|
||||
/** |
||||
* 子列表 |
||||
*/ |
||||
@GetMapping("/child-list") |
||||
@ApiImplicitParams({ |
||||
@ApiImplicitParam(name = "code", value = "字典编号", paramType = "query", dataType = "string"), |
||||
@ApiImplicitParam(name = "dictValue", value = "字典名称", paramType = "query", dataType = "string"), |
||||
@ApiImplicitParam(name = "parentId", value = "字典名称", paramType = "query", dataType = "string") |
||||
}) |
||||
@ApiOperationSupport(order = 4) |
||||
@ApiOperation(value = "列表", notes = "传入dict") |
||||
public R<IPage<DictBizVO>> childList(@ApiIgnore @RequestParam Map<String, Object> dict, Query query) { |
||||
IPage<DictBiz> page = dictService.page(Condition.getPage(query), Condition.getQueryWrapper(dict, DictBiz.class).lambda().orderByAsc(DictBiz::getSort)); |
||||
return R.data(DictBizWrapper.build().pageVO(page)); |
||||
} |
||||
|
||||
/** |
||||
* 获取字典树形结构 |
||||
* |
||||
* @return |
||||
*/ |
||||
@GetMapping("/tree") |
||||
@ApiOperationSupport(order = 5) |
||||
@ApiOperation(value = "树形结构", notes = "树形结构") |
||||
public R<List<DictBizVO>> tree() { |
||||
List<DictBizVO> tree = dictService.tree(); |
||||
return R.data(tree); |
||||
} |
||||
|
||||
/** |
||||
* 新增或修改 |
||||
*/ |
||||
@PostMapping("/submit") |
||||
@ApiOperationSupport(order = 6) |
||||
@ApiOperation(value = "新增或修改", notes = "传入dict") |
||||
@CacheEvict(cacheNames = {SYS_CACHE}, allEntries = true) |
||||
public R submit(@Valid @RequestBody DictBiz dict) { |
||||
return R.status(dictService.submit(dict)); |
||||
} |
||||
|
||||
|
||||
/** |
||||
* 删除 |
||||
*/ |
||||
@PostMapping("/remove") |
||||
@ApiOperationSupport(order = 7) |
||||
@ApiOperation(value = "删除", notes = "传入ids") |
||||
@CacheEvict(cacheNames = {SYS_CACHE}, allEntries = true) |
||||
public R remove(@ApiParam(value = "主键集合", required = true) @RequestParam String ids) { |
||||
return R.status(dictService.removeDict(ids)); |
||||
} |
||||
|
||||
/** |
||||
* 获取字典 |
||||
* |
||||
* @return |
||||
*/ |
||||
@GetMapping("/dictionary") |
||||
@ApiOperationSupport(order = 8) |
||||
@ApiOperation(value = "获取字典", notes = "获取字典") |
||||
public R<List<DictBiz>> dictionary(String code) { |
||||
List<DictBiz> tree = dictService.getList(code); |
||||
return R.data(tree); |
||||
} |
||||
|
||||
|
||||
} |
@ -0,0 +1,61 @@
|
||||
/* |
||||
* 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.feign; |
||||
|
||||
|
||||
import lombok.AllArgsConstructor; |
||||
import org.springblade.core.tool.api.R; |
||||
import org.springblade.system.entity.DictBiz; |
||||
import org.springblade.system.service.IDictBizService; |
||||
import org.springframework.web.bind.annotation.GetMapping; |
||||
import org.springframework.web.bind.annotation.RestController; |
||||
import springfox.documentation.annotations.ApiIgnore; |
||||
|
||||
import java.util.List; |
||||
|
||||
|
||||
/** |
||||
* 字典服务Feign实现类 |
||||
* |
||||
* @author Chill |
||||
*/ |
||||
@ApiIgnore |
||||
@RestController |
||||
@AllArgsConstructor |
||||
public class DictBizClient implements IDictBizClient { |
||||
|
||||
private IDictBizService service; |
||||
|
||||
@Override |
||||
@GetMapping(GET_BY_ID) |
||||
public R<DictBiz> getById(Long id) { |
||||
return R.data(service.getById(id)); |
||||
} |
||||
|
||||
@Override |
||||
@GetMapping(GET_VALUE) |
||||
public R<String> getValue(String code, Integer dictKey) { |
||||
return R.data(service.getValue(code, dictKey)); |
||||
} |
||||
|
||||
@Override |
||||
@GetMapping(GET_LIST) |
||||
public R<List<DictBiz>> getList(String code) { |
||||
return R.data(service.getList(code)); |
||||
} |
||||
|
||||
} |
@ -0,0 +1,57 @@
|
||||
/* |
||||
* 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.DictBiz; |
||||
import org.springblade.system.vo.DictBizVO; |
||||
|
||||
import java.util.List; |
||||
|
||||
/** |
||||
* Mapper 接口 |
||||
* |
||||
* @author Chill |
||||
*/ |
||||
public interface DictBizMapper extends BaseMapper<DictBiz> { |
||||
|
||||
/** |
||||
* 获取字典表对应中文 |
||||
* |
||||
* @param code 字典编号 |
||||
* @param dictKey 字典序号 |
||||
* @return |
||||
*/ |
||||
String getValue(String code, Integer dictKey); |
||||
|
||||
/** |
||||
* 获取字典表 |
||||
* |
||||
* @param code 字典编号 |
||||
* @return |
||||
*/ |
||||
List<DictBiz> getList(String code); |
||||
|
||||
/** |
||||
* 获取树形节点 |
||||
* |
||||
* @return |
||||
*/ |
||||
List<DictBizVO> tree(); |
||||
|
||||
} |
@ -0,0 +1,47 @@
|
||||
<?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.DictBizMapper"> |
||||
|
||||
<!-- 通用查询映射结果 --> |
||||
<resultMap id="dictResultMap" type="org.springblade.system.entity.DictBiz"> |
||||
<id column="id" property="id"/> |
||||
<result column="tenant_id" property="tenantId"/> |
||||
<result column="parent_id" property="parentId"/> |
||||
<result column="code" property="code"/> |
||||
<result column="dict_key" property="dictKey"/> |
||||
<result column="dict_value" property="dictValue"/> |
||||
<result column="sort" property="sort"/> |
||||
<result column="remark" property="remark"/> |
||||
<result column="is_deleted" property="isDeleted"/> |
||||
</resultMap> |
||||
|
||||
<resultMap id="treeNodeResultMap" type="org.springblade.core.tool.node.TreeNode"> |
||||
<id column="id" property="id"/> |
||||
<result column="parent_id" property="parentId"/> |
||||
<result column="title" property="title"/> |
||||
<result column="value" property="value"/> |
||||
<result column="key" property="key"/> |
||||
</resultMap> |
||||
|
||||
<select id="getValue" resultType="java.lang.String"> |
||||
select |
||||
dict_value |
||||
from blade_dict_biz where code = #{param1} and dict_key = #{param2} and is_deleted = 0 |
||||
</select> |
||||
|
||||
<!-- oracle 版本 --> |
||||
<!--<select id="getValue" resultType="java.lang.String"> |
||||
select |
||||
dict_value |
||||
from blade_dict_biz where code = #{param1, jdbcType=VARCHAR} and dict_key = #{param2} and dict_key >= 0 rownum 1 |
||||
</select>--> |
||||
|
||||
<select id="getList" resultMap="dictResultMap"> |
||||
select code, dict_key, dict_value, sort, remark from blade_dict_biz where code = #{param1} and dict_key >= 0 and is_sealed = 0 and is_deleted = 0 |
||||
</select> |
||||
|
||||
<select id="tree" resultMap="treeNodeResultMap"> |
||||
select id, parent_id, dict_value as title, id as "value", id as "key" from blade_dict_biz where is_deleted = 0 |
||||
</select> |
||||
|
||||
</mapper> |
@ -0,0 +1,73 @@
|
||||
/* |
||||
* 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.DictBiz; |
||||
import org.springblade.system.vo.DictBizVO; |
||||
|
||||
import java.util.List; |
||||
|
||||
/** |
||||
* 服务类 |
||||
* |
||||
* @author Chill |
||||
*/ |
||||
public interface IDictBizService extends IService<DictBiz> { |
||||
|
||||
/** |
||||
* 树形结构 |
||||
* |
||||
* @return |
||||
*/ |
||||
List<DictBizVO> tree(); |
||||
|
||||
/** |
||||
* 获取字典表对应中文 |
||||
* |
||||
* @param code 字典编号 |
||||
* @param dictKey 字典序号 |
||||
* @return |
||||
*/ |
||||
String getValue(String code, Integer dictKey); |
||||
|
||||
/** |
||||
* 获取字典表 |
||||
* |
||||
* @param code 字典编号 |
||||
* @return |
||||
*/ |
||||
List<DictBiz> getList(String code); |
||||
|
||||
/** |
||||
* 新增或修改 |
||||
* |
||||
* @param dict |
||||
* @return |
||||
*/ |
||||
boolean submit(DictBiz dict); |
||||
|
||||
/** |
||||
* 删除字典 |
||||
* |
||||
* @param ids |
||||
* @return |
||||
*/ |
||||
boolean removeDict(String ids); |
||||
|
||||
} |
@ -0,0 +1,84 @@
|
||||
/* |
||||
* 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.conditions.query.LambdaQueryWrapper; |
||||
import com.baomidou.mybatisplus.core.toolkit.Wrappers; |
||||
import com.baomidou.mybatisplus.extension.exceptions.ApiException; |
||||
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; |
||||
import org.springblade.core.tool.constant.BladeConstant; |
||||
import org.springblade.core.tool.node.ForestNodeMerger; |
||||
import org.springblade.core.tool.utils.Func; |
||||
import org.springblade.core.tool.utils.StringPool; |
||||
import org.springblade.system.entity.DictBiz; |
||||
import org.springblade.system.mapper.DictBizMapper; |
||||
import org.springblade.system.service.IDictBizService; |
||||
import org.springblade.system.vo.DictBizVO; |
||||
import org.springframework.cache.annotation.CacheEvict; |
||||
import org.springframework.stereotype.Service; |
||||
|
||||
import java.util.List; |
||||
|
||||
import static org.springblade.core.cache.constant.CacheConstant.DICT_CACHE; |
||||
|
||||
/** |
||||
* 服务实现类 |
||||
* |
||||
* @author Chill |
||||
*/ |
||||
@Service |
||||
public class DictBizServiceImpl extends ServiceImpl<DictBizMapper, DictBiz> implements IDictBizService { |
||||
|
||||
@Override |
||||
public List<DictBizVO> tree() { |
||||
return ForestNodeMerger.merge(baseMapper.tree()); |
||||
} |
||||
|
||||
@Override |
||||
public String getValue(String code, Integer dictKey) { |
||||
return Func.toStr(baseMapper.getValue(code, dictKey), StringPool.EMPTY); |
||||
} |
||||
|
||||
@Override |
||||
public List<DictBiz> getList(String code) { |
||||
return baseMapper.getList(code); |
||||
} |
||||
|
||||
@Override |
||||
@CacheEvict(cacheNames = {DICT_CACHE}, allEntries = true) |
||||
public boolean submit(DictBiz dict) { |
||||
LambdaQueryWrapper<DictBiz> lqw = Wrappers.<DictBiz>query().lambda().eq(DictBiz::getCode, dict.getCode()).eq(DictBiz::getDictKey, dict.getDictKey()); |
||||
Integer cnt = baseMapper.selectCount((Func.isEmpty(dict.getId())) ? lqw : lqw.notIn(DictBiz::getId, dict.getId())); |
||||
if (cnt > 0) { |
||||
throw new ApiException("当前字典键值已存在!"); |
||||
} |
||||
if (Func.isEmpty(dict.getParentId())) { |
||||
dict.setParentId(BladeConstant.TOP_PARENT_ID); |
||||
} |
||||
dict.setIsDeleted(BladeConstant.DB_NOT_DELETED); |
||||
return saveOrUpdate(dict); |
||||
} |
||||
|
||||
@Override |
||||
public boolean removeDict(String ids) { |
||||
Integer cnt = baseMapper.selectCount(Wrappers.<DictBiz>query().lambda().in(DictBiz::getParentId, Func.toLongList(ids))); |
||||
if (cnt > 0) { |
||||
throw new ApiException("请先删除子节点!"); |
||||
} |
||||
return removeByIds(Func.toLongList(ids)); |
||||
} |
||||
} |
@ -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.wrapper; |
||||
|
||||
import org.springblade.core.mp.support.BaseEntityWrapper; |
||||
import org.springblade.core.tool.constant.BladeConstant; |
||||
import org.springblade.core.tool.node.ForestNodeMerger; |
||||
import org.springblade.core.tool.node.INode; |
||||
import org.springblade.core.tool.utils.BeanUtil; |
||||
import org.springblade.core.tool.utils.Func; |
||||
import org.springblade.system.cache.DictBizCache; |
||||
import org.springblade.system.entity.DictBiz; |
||||
import org.springblade.system.vo.DictBizVO; |
||||
|
||||
import java.util.List; |
||||
import java.util.Objects; |
||||
import java.util.stream.Collectors; |
||||
|
||||
|
||||
/** |
||||
* 包装类,返回视图层所需的字段 |
||||
* |
||||
* @author Chill |
||||
*/ |
||||
public class DictBizWrapper extends BaseEntityWrapper<DictBiz, DictBizVO> { |
||||
|
||||
public static DictBizWrapper build() { |
||||
return new DictBizWrapper(); |
||||
} |
||||
|
||||
@Override |
||||
public DictBizVO entityVO(DictBiz dict) { |
||||
DictBizVO dictVO = Objects.requireNonNull(BeanUtil.copy(dict, DictBizVO.class)); |
||||
if (Func.equals(dict.getParentId(), BladeConstant.TOP_PARENT_ID)) { |
||||
dictVO.setParentName(BladeConstant.TOP_PARENT_NAME); |
||||
} else { |
||||
DictBiz parent = DictBizCache.getById(dict.getParentId()); |
||||
dictVO.setParentName(parent.getDictValue()); |
||||
} |
||||
return dictVO; |
||||
} |
||||
|
||||
public List<INode> listNodeVO(List<DictBiz> list) { |
||||
List<INode> collect = list.stream().map(dict -> BeanUtil.copy(dict, DictBizVO.class)).collect(Collectors.toList()); |
||||
return ForestNodeMerger.merge(collect); |
||||
} |
||||
|
||||
} |
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -1,42 +0,0 @@
|
||||
-- ---------------------------- |
||||
-- 增加错误日志表字段 |
||||
-- ---------------------------- |
||||
ALTER TABLE `blade_log_error` |
||||
ADD COLUMN `remote_ip` varchar(255) NULL COMMENT '操作IP地址' AFTER `line_number`; |
||||
|
||||
-- ---------------------------- |
||||
-- 增加通用日志表字段 |
||||
-- ---------------------------- |
||||
ALTER TABLE `blade_log_usual` |
||||
ADD COLUMN `remote_ip` varchar(255) NULL COMMENT '操作IP地址' AFTER `request_uri`, |
||||
ADD COLUMN `method_class` varchar(255) NULL COMMENT '方法类' AFTER `remote_ip`, |
||||
ADD COLUMN `method_name` varchar(255) NULL COMMENT '方法名' AFTER `method_class`; |
||||
|
||||
|
||||
-- ---------------------------- |
||||
-- 插入菜单数据 |
||||
-- ---------------------------- |
||||
INSERT INTO `blade_menu`(`id`, `parent_id`, `code`, `name`, `alias`, `path`, `source`, `sort`, `category`, `action`, `is_open`, `remark`, `is_deleted`) |
||||
VALUES ('1164733369658963251', '1123598815738675210', 'elk', 'ELK监控', 'menu', 'http://localhost:5601/', 'iconfont iconicon_cspace', 4, 1, 0, 2, '', 0); |
||||
INSERT INTO `blade_menu`(`id`, `parent_id`, `code`, `name`, `alias`, `path`, `source`, `sort`, `category`, `action`, `is_open`, `remark`, `is_deleted`) |
||||
VALUES ('1164733369658963252', '1123598815738675210', 'zipkin', 'Zipkin监控', 'menu', 'http://localhost:9411/', 'iconfont iconicon_task', 5, 1, 0, 2, '', 0); |
||||
INSERT INTO `blade_menu`(`id`, `parent_id`, `code`, `name`, `alias`, `path`, `source`, `sort`, `category`, `action`, `is_open`, `remark`, `is_deleted`) |
||||
VALUES ('1164733369658963253', '1123598815738675210', 'turbine', 'Turbine监控', 'menu', 'http://localhost:7003/hystrix', 'iconfont iconicon_subordinate', 6, 1, 0, 2, '', 0); |
||||
INSERT INTO `blade_menu`(`id`, `parent_id`, `code`, `name`, `alias`, `path`, `source`, `sort`, `category`, `action`, `is_open`, `remark`, `is_deleted`) |
||||
VALUES ('1164733369658963254', '1123598815738675210', 'sentinel', 'Sentinel管理', 'menu', 'http://localhost:8858', 'iconfont iconicon_safety', 7, 1, 0, 2, '', 0); |
||||
INSERT INTO `blade_menu`(`id`, `parent_id`, `code`, `name`, `alias`, `path`, `source`, `sort`, `category`, `action`, `is_open`, `remark`, `is_deleted`) |
||||
VALUES ('1164733369658963255', '1123598815738675210', 'es', 'Elasticsearch管理', 'menu', 'http://localhost:9100/', 'iconfont iconfont iconicon_search', 8, 1, 0, 2, '', 0); |
||||
|
||||
-- ---------------------------- |
||||
-- 插入数据源角色权限数据 |
||||
-- ---------------------------- |
||||
INSERT INTO `blade_role_menu`(`id`,`menu_id`,`role_id`) |
||||
VALUES ('1161272693873322991', '1164733369658963251', '1123598816738675201'); |
||||
INSERT INTO `blade_role_menu`(`id`,`menu_id`,`role_id`) |
||||
VALUES ('1161272693873322992', '1164733369658963252', '1123598816738675201'); |
||||
INSERT INTO `blade_role_menu`(`id`,`menu_id`,`role_id`) |
||||
VALUES ('1161272693873322993', '1164733369658963253', '1123598816738675201'); |
||||
INSERT INTO `blade_role_menu`(`id`,`menu_id`,`role_id`) |
||||
VALUES ('1161272693873322994', '1164733369658963254', '1123598816738675201'); |
||||
INSERT INTO `blade_role_menu`(`id`,`menu_id`,`role_id`) |
||||
VALUES ('1161272693873322995', '1164733369658963255', '1123598816738675201'); |
@ -0,0 +1,51 @@
|
||||
-- ---------------------------- |
||||
-- 修改字典表字段类型 |
||||
-- ---------------------------- |
||||
ALTER TABLE `blade_dict` |
||||
MODIFY COLUMN `dict_key` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '字典值' AFTER `code`; |
||||
|
||||
-- ---------------------------- |
||||
-- 插入菜单数据 |
||||
-- ---------------------------- |
||||
INSERT INTO `blade_menu`(`id`, `parent_id`, `code`, `name`, `alias`, `path`, `source`, `sort`, `category`, `action`, `is_open`, `remark`, `is_deleted`) |
||||
VALUES ('1164733379658963251', '1123598815738675203', 'dictbiz', '业务字典', 'menu', '/system/dictbiz', 'iconfont iconicon_study', 3, 1, 0, 1, '', 0); |
||||
INSERT INTO `blade_menu`(`id`, `parent_id`, `code`, `name`, `alias`, `path`, `source`, `sort`, `category`, `action`, `is_open`, `remark`, `is_deleted`) |
||||
VALUES ('1164733379658963252', '1164733379658963251', 'dictbiz_add', '新增', 'add', '/system/dictbiz/add', 'plus', 1, 2, 2, 1, '', 0); |
||||
INSERT INTO `blade_menu`(`id`, `parent_id`, `code`, `name`, `alias`, `path`, `source`, `sort`, `category`, `action`, `is_open`, `remark`, `is_deleted`) |
||||
VALUES ('1164733379658963253', '1164733379658963251', 'dictbiz_edit', '修改', 'edit', '/system/dictbiz/edit', 'form', 2, 2, 1, 1, '', 0); |
||||
INSERT INTO `blade_menu`(`id`, `parent_id`, `code`, `name`, `alias`, `path`, `source`, `sort`, `category`, `action`, `is_open`, `remark`, `is_deleted`) |
||||
VALUES ('1164733379658963254', '1164733379658963251', 'dictbiz_delete', '删除', 'delete', '/api/blade-system/dict-biz/remove', 'delete', 3, 2, 0, 1, '', 0); |
||||
INSERT INTO `blade_menu`(`id`, `parent_id`, `code`, `name`, `alias`, `path`, `source`, `sort`, `category`, `action`, `is_open`, `remark`, `is_deleted`) |
||||
VALUES ('1164733379658963255', '1164733379658963251', 'dictbiz_view', '查看', 'view', '/system/dictbiz/view', 'file-text', 4, 2, 3, 1, '', 0); |
||||
|
||||
-- ---------------------------- |
||||
-- 插入数据源角色权限数据 |
||||
-- ---------------------------- |
||||
INSERT INTO `blade_role_menu`(`id`,`menu_id`,`role_id`) |
||||
VALUES ('1161272793873322991', '1164733379658963251', '1123598816738675201'); |
||||
INSERT INTO `blade_role_menu`(`id`,`menu_id`,`role_id`) |
||||
VALUES ('1161272793873322992', '116473337658963252', '1123598816738675201'); |
||||
INSERT INTO `blade_role_menu`(`id`,`menu_id`,`role_id`) |
||||
VALUES ('1161272793873322993', '1164733379658963253', '1123598816738675201'); |
||||
INSERT INTO `blade_role_menu`(`id`,`menu_id`,`role_id`) |
||||
VALUES ('1161272793873322994', '1164733379658963254', '1123598816738675201'); |
||||
INSERT INTO `blade_role_menu`(`id`,`menu_id`,`role_id`) |
||||
VALUES ('1161272793873322995', '1164733379658963255', '1123598816738675201'); |
||||
|
||||
|
||||
-- ---------------------------- |
||||
-- 创建业务字典表 |
||||
-- ---------------------------- |
||||
CREATE TABLE `blade_dict_biz` ( |
||||
`id` bigint(64) NOT NULL COMMENT '主键', |
||||
`tenant_id` varchar(12) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '租户ID', |
||||
`parent_id` bigint(64) NULL DEFAULT 0 COMMENT '父主键', |
||||
`code` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '字典码', |
||||
`dict_key` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '字典值', |
||||
`dict_value` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '字典名称', |
||||
`sort` int(11) NULL DEFAULT NULL COMMENT '排序', |
||||
`remark` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '字典备注', |
||||
`is_sealed` int(2) NULL DEFAULT 0 COMMENT '是否已封存', |
||||
`is_deleted` int(2) NULL DEFAULT 0 COMMENT '是否已删除', |
||||
PRIMARY KEY (`id`) USING BTREE |
||||
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '业务字典表'; |
@ -1,48 +0,0 @@
|
||||
-- ---------------------------- |
||||
-- 增加错误日志表字段 |
||||
-- ---------------------------- |
||||
ALTER TABLE "BLADEX"."BLADE_LOG_ERROR" |
||||
ADD ("REMOTE_IP" VARCHAR2(255) ); |
||||
|
||||
COMMENT ON COLUMN "BLADEX"."BLADE_LOG_ERROR"."REMOTE_IP" IS '操作IP地址'; |
||||
|
||||
-- ---------------------------- |
||||
-- 增加通用日志表字段 |
||||
-- ---------------------------- |
||||
ALTER TABLE "BLADEX"."BLADE_LOG_USUAL" |
||||
ADD ("REMOTE_IP" VARCHAR2(255) ) |
||||
ADD ("METHOD_CLASS" VARCHAR2(255) ) |
||||
ADD ("METHOD_NAME" VARCHAR2(255) ); |
||||
|
||||
COMMENT ON COLUMN "BLADEX"."BLADE_LOG_USUAL"."REMOTE_IP" IS '操作IP地址'; |
||||
COMMENT ON COLUMN "BLADEX"."BLADE_LOG_USUAL"."METHOD_CLASS" IS '方法类'; |
||||
COMMENT ON COLUMN "BLADEX"."BLADE_LOG_USUAL"."METHOD_NAME" IS '方法名'; |
||||
|
||||
|
||||
-- ---------------------------- |
||||
-- 插入菜单数据 |
||||
-- ---------------------------- |
||||
INSERT INTO "BLADEX"."BLADE_MENU"("ID", "PARENT_ID", "CODE", "NAME", "ALIAS", "PATH", "SOURCE", "SORT", "CATEGORY", "ACTION", "IS_OPEN", "REMARK", "IS_DELETED") |
||||
VALUES ('1164733369658963251', '1123598815738675210', 'elk', 'ELK监控', 'menu', 'http://localhost:5601/', 'iconfont iconicon_cspace', 4, 1, 0, 2, '', 0); |
||||
INSERT INTO "BLADEX"."BLADE_MENU"("ID", "PARENT_ID", "CODE", "NAME", "ALIAS", "PATH", "SOURCE", "SORT", "CATEGORY", "ACTION", "IS_OPEN", "REMARK", "IS_DELETED") |
||||
VALUES ('1164733369658963252', '1123598815738675210', 'zipkin', 'Zipkin监控', 'menu', 'http://localhost:9411/', 'iconfont iconicon_task', 5, 1, 0, 2, '', 0); |
||||
INSERT INTO "BLADEX"."BLADE_MENU"("ID", "PARENT_ID", "CODE", "NAME", "ALIAS", "PATH", "SOURCE", "SORT", "CATEGORY", "ACTION", "IS_OPEN", "REMARK", "IS_DELETED") |
||||
VALUES ('1164733369658963253', '1123598815738675210', 'turbine', 'Turbine监控', 'menu', 'http://localhost:7003/hystrix', 'iconfont iconicon_subordinate', 6, 1, 0, 2, '', 0); |
||||
INSERT INTO "BLADEX"."BLADE_MENU"("ID", "PARENT_ID", "CODE", "NAME", "ALIAS", "PATH", "SOURCE", "SORT", "CATEGORY", "ACTION", "IS_OPEN", "REMARK", "IS_DELETED") |
||||
VALUES ('1164733369658963254', '1123598815738675210', 'sentinel', 'Sentinel管理', 'menu', 'http://localhost:8858', 'iconfont iconicon_safety', 7, 1, 0, 2, '', 0); |
||||
INSERT INTO "BLADEX"."BLADE_MENU"("ID", "PARENT_ID", "CODE", "NAME", "ALIAS", "PATH", "SOURCE", "SORT", "CATEGORY", "ACTION", "IS_OPEN", "REMARK", "IS_DELETED") |
||||
VALUES ('1164733369658963255', '1123598815738675210', 'es', 'Elasticsearch管理', 'menu', 'http://localhost:9100/', 'iconfont iconfont iconicon_search', 8, 1, 0, 2, '', 0); |
||||
|
||||
-- ---------------------------- |
||||
-- 插入数据源角色权限数据 |
||||
-- ---------------------------- |
||||
INSERT INTO "BLADEX"."BLADE_ROLE_MENU"(ID,MENU_ID,ROLE_ID) |
||||
VALUES ('1161272693873322991', '1164733369658963251', '1123598816738675201'); |
||||
INSERT INTO "BLADEX"."BLADE_ROLE_MENU"(ID,MENU_ID,ROLE_ID) |
||||
VALUES ('1161272693873322992', '1164733369658963252', '1123598816738675201'); |
||||
INSERT INTO "BLADEX"."BLADE_ROLE_MENU"(ID,MENU_ID,ROLE_ID) |
||||
VALUES ('1161272693873322993', '1164733369658963253', '1123598816738675201'); |
||||
INSERT INTO "BLADEX"."BLADE_ROLE_MENU"(ID,MENU_ID,ROLE_ID) |
||||
VALUES ('1161272693873322994', '1164733369658963254', '1123598816738675201'); |
||||
INSERT INTO "BLADEX"."BLADE_ROLE_MENU"(ID,MENU_ID,ROLE_ID) |
||||
VALUES ('1161272693873322995', '1164733369658963255', '1123598816738675201'); |
@ -0,0 +1,68 @@
|
||||
-- 添加临时列 |
||||
alter table "BLADEX"."BLADE_DICT" add TMP_DICT_KEY NVARCHAR2(255); |
||||
-- 将目标字段中数据加入到临时列中 |
||||
update "BLADEX"."BLADE_DICT" set TMP_DICT_KEY = DICT_KEY ; |
||||
-- 将目标字段数据清空 |
||||
update "BLADEX"."BLADE_DICT" set DICT_KEY = null; |
||||
-- 更改目标字段类型 |
||||
alter table "BLADEX"."BLADE_DICT" modify ( DICT_KEY NVARCHAR2(255)); |
||||
-- 将临时列数据加回到目标字段中 |
||||
update "BLADEX"."BLADE_DICT" set DICT_KEY = TMP_DICT_KEY; |
||||
-- 清除临时列 |
||||
alter table "BLADEX"."BLADE_DICT" drop column TMP_DICT_KEY; |
||||
|
||||
-- ---------------------------- |
||||
-- 插入菜单数据 |
||||
-- ---------------------------- |
||||
INSERT INTO "BLADEX"."BLADE_MENU"("ID", "PARENT_ID", "CODE", "NAME", "ALIAS", "PATH", "SOURCE", "SORT", "CATEGORY", "ACTION", "IS_OPEN", "REMARK", "IS_DELETED") |
||||
VALUES ('1164733379658963251', '1123598815738675203', 'dictbiz', '业务字典', 'menu', '/system/dictbiz', 'iconfont iconicon_study', 3, 1, 0, 1, '', 0); |
||||
INSERT INTO "BLADEX"."BLADE_MENU"("ID", "PARENT_ID", "CODE", "NAME", "ALIAS", "PATH", "SOURCE", "SORT", "CATEGORY", "ACTION", "IS_OPEN", "REMARK", "IS_DELETED") |
||||
VALUES ('1164733379658963252', '1164733379658963251', 'dictbiz_add', '新增', 'add', '/system/dictbiz/add', 'plus', 1, 2, 2, 1, '', 0); |
||||
INSERT INTO "BLADEX"."BLADE_MENU"("ID", "PARENT_ID", "CODE", "NAME", "ALIAS", "PATH", "SOURCE", "SORT", "CATEGORY", "ACTION", "IS_OPEN", "REMARK", "IS_DELETED") |
||||
VALUES ('1164733379658963253', '1164733379658963251', 'dictbiz_edit', '修改', 'edit', '/system/dictbiz/edit', 'form', 2, 2, 1, 1, '', 0); |
||||
INSERT INTO "BLADEX"."BLADE_MENU"("ID", "PARENT_ID", "CODE", "NAME", "ALIAS", "PATH", "SOURCE", "SORT", "CATEGORY", "ACTION", "IS_OPEN", "REMARK", "IS_DELETED") |
||||
VALUES ('1164733379658963254', '1164733379658963251', 'dictbiz_delete', '删除', 'delete', '/api/blade-system/dict-biz/remove', 'delete', 3, 2, 0, 1, '', 0); |
||||
INSERT INTO "BLADEX"."BLADE_MENU"("ID", "PARENT_ID", "CODE", "NAME", "ALIAS", "PATH", "SOURCE", "SORT", "CATEGORY", "ACTION", "IS_OPEN", "REMARK", "IS_DELETED") |
||||
VALUES ('1164733379658963255', '1164733379658963251', 'dictbiz_view', '查看', 'view', '/system/dictbiz/view', 'file-text', 4, 2, 3, 1, '', 0); |
||||
|
||||
-- ---------------------------- |
||||
-- 插入数据源角色权限数据 |
||||
-- ---------------------------- |
||||
INSERT INTO "BLADEX"."BLADE_ROLE_MENU"(ID,MENU_ID,ROLE_ID) |
||||
VALUES ('1161272793873322991', '1164733379658963251', '1123598816738675201'); |
||||
INSERT INTO "BLADEX"."BLADE_ROLE_MENU"(ID,MENU_ID,ROLE_ID) |
||||
VALUES ('1161272793873322992', '116473337658963252', '1123598816738675201'); |
||||
INSERT INTO "BLADEX"."BLADE_ROLE_MENU"(ID,MENU_ID,ROLE_ID) |
||||
VALUES ('1161272793873322993', '1164733379658963253', '1123598816738675201'); |
||||
INSERT INTO "BLADEX"."BLADE_ROLE_MENU"(ID,MENU_ID,ROLE_ID) |
||||
VALUES ('1161272793873322994', '1164733379658963254', '1123598816738675201'); |
||||
INSERT INTO "BLADEX"."BLADE_ROLE_MENU"(ID,MENU_ID,ROLE_ID) |
||||
VALUES ('1161272793873322995', '1164733379658963255', '1123598816738675201'); |
||||
|
||||
-- ---------------------------- |
||||
-- 创建业务字典表 |
||||
-- ---------------------------- |
||||
CREATE TABLE "BLADEX"."BLADE_DICT_BIZ" ( |
||||
"ID" NUMBER(20) NOT NULL , |
||||
"TENANT_ID" NVARCHAR2(12) , |
||||
"PARENT_ID" NUMBER(20) , |
||||
"CODE" NVARCHAR2(255) , |
||||
"DICT_KEY" NVARCHAR2(255) , |
||||
"DICT_VALUE" NVARCHAR2(255) , |
||||
"SORT" NUMBER(11) , |
||||
"REMARK" NVARCHAR2(255) , |
||||
"IS_SEALED" NUMBER(11) , |
||||
"IS_DELETED" NUMBER(11) , |
||||
PRIMARY KEY ("ID") |
||||
); |
||||
COMMENT ON COLUMN "BLADEX"."BLADE_DICT_BIZ"."ID" IS '主键'; |
||||
COMMENT ON COLUMN "BLADEX"."BLADE_DICT_BIZ"."TENANT_ID" IS '租户ID'; |
||||
COMMENT ON COLUMN "BLADEX"."BLADE_DICT_BIZ"."PARENT_ID" IS '父主键'; |
||||
COMMENT ON COLUMN "BLADEX"."BLADE_DICT_BIZ"."CODE" IS '字典码'; |
||||
COMMENT ON COLUMN "BLADEX"."BLADE_DICT_BIZ"."DICT_KEY" IS '字典值'; |
||||
COMMENT ON COLUMN "BLADEX"."BLADE_DICT_BIZ"."DICT_VALUE" IS '字典名称'; |
||||
COMMENT ON COLUMN "BLADEX"."BLADE_DICT_BIZ"."SORT" IS '排序'; |
||||
COMMENT ON COLUMN "BLADEX"."BLADE_DICT_BIZ"."REMARK" IS '字典备注'; |
||||
COMMENT ON COLUMN "BLADEX"."BLADE_DICT_BIZ"."IS_SEALED" IS '是否已封存'; |
||||
COMMENT ON COLUMN "BLADEX"."BLADE_DICT_BIZ"."IS_DELETED" IS '是否已删除'; |
||||
COMMENT ON TABLE "BLADEX"."BLADE_DICT_BIZ" IS '数据源配置表'; |
@ -1,47 +0,0 @@
|
||||
-- ---------------------------- |
||||
-- 增加错误日志表字段 |
||||
-- ---------------------------- |
||||
ALTER TABLE "public"."blade_log_error" |
||||
ADD COLUMN "remote_ip" varchar(500); |
||||
|
||||
COMMENT ON COLUMN "public"."blade_dict"."remote_ip" IS '操作IP地址'; |
||||
|
||||
-- ---------------------------- |
||||
-- 增加通用日志表字段 |
||||
-- ---------------------------- |
||||
ALTER TABLE "public"."blade_log_usual" |
||||
ADD COLUMN "remote_ip" varchar(500), |
||||
ADD COLUMN "method_class" varchar(500), |
||||
ADD COLUMN "method_name" varchar(500); |
||||
|
||||
COMMENT ON COLUMN "public"."blade_log_usual"."remote_ip" IS '操作IP地址'; |
||||
COMMENT ON COLUMN "public"."blade_log_usual"."method_class" IS '方法类'; |
||||
COMMENT ON COLUMN "public"."blade_log_usual"."method_name" IS '方法名'; |
||||
|
||||
-- ---------------------------- |
||||
-- 插入菜单数据 |
||||
-- ---------------------------- |
||||
INSERT INTO "blade_menu"("id", "parent_id", "code", "name", "alias", "path", "source", "sort", "category", "action", "is_open", "remark", "is_deleted") |
||||
VALUES ('1164733369658963251', '1123598815738675210', 'elk', 'ELK监控', 'menu', 'http://localhost:5601/', 'iconfont iconicon_cspace', 4, 1, 0, 2, '', 0); |
||||
INSERT INTO "blade_menu"("id", "parent_id", "code", "name", "alias", "path", "source", "sort", "category", "action", "is_open", "remark", "is_deleted") |
||||
VALUES ('1164733369658963252', '1123598815738675210', 'zipkin', 'Zipkin监控', 'menu', 'http://localhost:9411/', 'iconfont iconicon_task', 5, 1, 0, 2, '', 0); |
||||
INSERT INTO "blade_menu"("id", "parent_id", "code", "name", "alias", "path", "source", "sort", "category", "action", "is_open", "remark", "is_deleted") |
||||
VALUES ('1164733369658963253', '1123598815738675210', 'turbine', 'Turbine监控', 'menu', 'http://localhost:7003/hystrix', 'iconfont iconicon_subordinate', 6, 1, 0, 2, '', 0); |
||||
INSERT INTO "blade_menu"("id", "parent_id", "code", "name", "alias", "path", "source", "sort", "category", "action", "is_open", "remark", "is_deleted") |
||||
VALUES ('1164733369658963254', '1123598815738675210', 'sentinel', 'Sentinel管理', 'menu', 'http://localhost:8858', 'iconfont iconicon_safety', 7, 1, 0, 2, '', 0); |
||||
INSERT INTO "blade_menu"("id", "parent_id", "code", "name", "alias", "path", "source", "sort", "category", "action", "is_open", "remark", "is_deleted") |
||||
VALUES ('1164733369658963255', '1123598815738675210', 'es', 'Elasticsearch管理', 'menu', 'http://localhost:9100/', 'iconfont iconfont iconicon_search', 8, 1, 0, 2, '', 0); |
||||
|
||||
-- ---------------------------- |
||||
-- 插入数据源角色权限数据 |
||||
-- ---------------------------- |
||||
INSERT INTO "blade_role_menu"("id","menu_id","role_id") |
||||
VALUES ('1161272693873322991', '1164733369658963251', '1123598816738675201'); |
||||
INSERT INTO "blade_role_menu"("id","menu_id","role_id") |
||||
VALUES ('1161272693873322992', '1164733369658963252', '1123598816738675201'); |
||||
INSERT INTO "blade_role_menu"("id","menu_id","role_id") |
||||
VALUES ('1161272693873322993', '1164733369658963253', '1123598816738675201'); |
||||
INSERT INTO "blade_role_menu"("id","menu_id","role_id") |
||||
VALUES ('1161272693873322994', '1164733369658963254', '1123598816738675201'); |
||||
INSERT INTO "blade_role_menu"("id","menu_id","role_id") |
||||
VALUES ('1161272693873322995', '1164733369658963255', '1123598816738675201'); |
@ -0,0 +1,59 @@
|
||||
ALTER TABLE "blade_dict" |
||||
ALTER COLUMN "dict_key" TYPE varchar(255) USING "dict_key"::varchar(255); |
||||
|
||||
|
||||
-- ---------------------------- |
||||
-- 插入菜单数据 |
||||
-- ---------------------------- |
||||
INSERT INTO "blade_menu"("id", "parent_id", "code", "name", "alias", "path", "source", "sort", "category", "action", "is_open", "remark", "is_deleted") |
||||
VALUES ('1164733379658963251', '1123598815738675203', 'dictbiz', '业务字典', 'menu', '/system/dictbiz', 'iconfont iconicon_study', 3, 1, 0, 1, '', 0); |
||||
INSERT INTO "blade_menu"("id", "parent_id", "code", "name", "alias", "path", "source", "sort", "category", "action", "is_open", "remark", "is_deleted") |
||||
VALUES ('1164733379658963252', '1164733379658963251', 'dictbiz_add', '新增', 'add', '/system/dictbiz/add', 'plus', 1, 2, 2, 1, '', 0); |
||||
INSERT INTO "blade_menu"("id", "parent_id", "code", "name", "alias", "path", "source", "sort", "category", "action", "is_open", "remark", "is_deleted") |
||||
VALUES ('1164733379658963253', '1164733379658963251', 'dictbiz_edit', '修改', 'edit', '/system/dictbiz/edit', 'form', 2, 2, 1, 1, '', 0); |
||||
INSERT INTO "blade_menu"("id", "parent_id", "code", "name", "alias", "path", "source", "sort", "category", "action", "is_open", "remark", "is_deleted") |
||||
VALUES ('1164733379658963254', '1164733379658963251', 'dictbiz_delete', '删除', 'delete', '/api/blade-system/dict-biz/remove', 'delete', 3, 2, 0, 1, '', 0); |
||||
INSERT INTO "blade_menu"("id", "parent_id", "code", "name", "alias", "path", "source", "sort", "category", "action", "is_open", "remark", "is_deleted") |
||||
VALUES ('1164733379658963255', '1164733379658963251', 'dictbiz_view', '查看', 'view', '/system/dictbiz/view', 'file-text', 4, 2, 3, 1, '', 0); |
||||
|
||||
-- ---------------------------- |
||||
-- 插入数据源角色权限数据 |
||||
-- ---------------------------- |
||||
INSERT INTO "blade_role_menu"("id","menu_id","role_id") |
||||
VALUES ('1161272793873322991', '1164733379658963251', '1123598816738675201'); |
||||
INSERT INTO "blade_role_menu"("id","menu_id","role_id") |
||||
VALUES ('1161272793873322992', '116473337658963252', '1123598816738675201'); |
||||
INSERT INTO "blade_role_menu"("id","menu_id","role_id") |
||||
VALUES ('1161272793873322993', '1164733379658963253', '1123598816738675201'); |
||||
INSERT INTO "blade_role_menu"("id","menu_id","role_id") |
||||
VALUES ('1161272793873322994', '1164733379658963254', '1123598816738675201'); |
||||
INSERT INTO "blade_role_menu"("id","menu_id","role_id") |
||||
VALUES ('1161272793873322995', '1164733379658963255', '1123598816738675201'); |
||||
|
||||
-- ---------------------------- |
||||
-- 创建业务字典表 |
||||
-- ---------------------------- |
||||
CREATE TABLE "blade_dict_biz" ( |
||||
"id" int8 NOT NULL, |
||||
"tenant_id" varchar(12) COLLATE "pg_catalog"."default", |
||||
"parent_id" int8, |
||||
"code" varchar(255) COLLATE "pg_catalog"."default", |
||||
"dict_key" varchar(255) COLLATE "pg_catalog"."default", |
||||
"dict_value" varchar(255) COLLATE "pg_catalog"."default", |
||||
"sort" int4, |
||||
"remark" varchar(255) COLLATE "pg_catalog"."default", |
||||
"is_sealed" int4, |
||||
"is_deleted" int4, |
||||
PRIMARY KEY ("id") |
||||
); |
||||
COMMENT ON COLUMN "blade_dict_biz"."id" IS '主键'; |
||||
COMMENT ON COLUMN "blade_dict_biz"."tenant_id" IS '租户ID'; |
||||
COMMENT ON COLUMN "blade_dict_biz"."parent_id" IS '父主键'; |
||||
COMMENT ON COLUMN "blade_dict_biz"."code" IS '字典码'; |
||||
COMMENT ON COLUMN "blade_dict_biz"."dict_key" IS '字典值'; |
||||
COMMENT ON COLUMN "blade_dict_biz"."dict_value" IS '字典名称'; |
||||
COMMENT ON COLUMN "blade_dict_biz"."sort" IS '排序'; |
||||
COMMENT ON COLUMN "blade_dict_biz"."remark" IS '字典备注'; |
||||
COMMENT ON COLUMN "blade_dict_biz"."is_sealed" IS '是否已封存'; |
||||
COMMENT ON COLUMN "blade_dict_biz"."is_deleted" IS '是否已删除'; |
||||
COMMENT ON TABLE "blade_dict_biz" IS '业务字典表'; |
Loading…
Reference in new issue