|
@@ -0,0 +1,120 @@
|
|
|
+/*
|
|
|
+ * 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.control.controller;
|
|
|
+
|
|
|
+import io.swagger.annotations.*;
|
|
|
+import com.github.xiaoymin.knife4j.annotations.ApiOperationSupport;
|
|
|
+import lombok.AllArgsConstructor;
|
|
|
+
|
|
|
+import javax.validation.Valid;
|
|
|
+
|
|
|
+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.DictBiz;
|
|
|
+import org.springblade.system.vo.DictBizVO;
|
|
|
+import org.springframework.web.bind.annotation.*;
|
|
|
+import org.springframework.web.bind.annotation.RequestParam;
|
|
|
+import com.baomidou.mybatisplus.core.metadata.IPage;
|
|
|
+import org.springblade.control.entity.DictInfo;
|
|
|
+import org.springblade.control.vo.DictInfoVO;
|
|
|
+import org.springblade.control.service.IDictInfoService;
|
|
|
+import org.springblade.core.boot.ctrl.BladeController;
|
|
|
+import springfox.documentation.annotations.ApiIgnore;
|
|
|
+
|
|
|
+import java.util.List;
|
|
|
+import java.util.Map;
|
|
|
+
|
|
|
+/**
|
|
|
+ * 参数信息表 控制器
|
|
|
+ *
|
|
|
+ * @author BladeX
|
|
|
+ * @since 2023-06-05
|
|
|
+ */
|
|
|
+@RestController
|
|
|
+@AllArgsConstructor
|
|
|
+@RequestMapping("/dictinfo")
|
|
|
+@Api(value = "参数信息表", tags = "参数信息表接口")
|
|
|
+public class DictInfoController extends BladeController {
|
|
|
+
|
|
|
+ private final IDictInfoService dictInfoService;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 新增或修改 参数信息表
|
|
|
+ */
|
|
|
+ @PostMapping("/submit")
|
|
|
+ @ApiOperationSupport(order = 6)
|
|
|
+ @ApiOperation(value = "新增或修改", notes = "传入dictInfo")
|
|
|
+ public R submit(@Valid @RequestBody DictInfo dictInfo) {
|
|
|
+ return R.status(dictInfoService.saveOrUpdate(dictInfo));
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 删除 参数信息表
|
|
|
+ */
|
|
|
+ @PostMapping("/remove")
|
|
|
+ @ApiOperationSupport(order = 7)
|
|
|
+ @ApiOperation(value = "逻辑删除", notes = "传入ids")
|
|
|
+ public R remove(@ApiParam(value = "主键集合", required = true) @RequestParam String ids) {
|
|
|
+ return R.status(dictInfoService.deleteLogic(Func.toLongList(ids)));
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 获取字典
|
|
|
+ */
|
|
|
+ @GetMapping("/dictionary")
|
|
|
+ @ApiOperationSupport(order = 8)
|
|
|
+ @ApiOperation(value = "获取字典", notes = "获取字典")
|
|
|
+ public R<List<DictBiz>> dictionary(String code) {
|
|
|
+ List<DictBiz> tree = dictInfoService.getList(code, "notRoot");
|
|
|
+ return R.data(tree);
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 顶级列表
|
|
|
+ */
|
|
|
+ @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<DictInfoVO>> parentList(@ApiIgnore @RequestParam Map<String, Object> dict, Query query) {
|
|
|
+ return R.data(dictInfoService.parentList(dict, query));
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 子列表
|
|
|
+ */
|
|
|
+ @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<List<DictInfoVO>> childList(@ApiIgnore @RequestParam Map<String, Object> dict, @RequestParam(required = false, defaultValue = "-1") Long parentId) {
|
|
|
+ return R.data(dictInfoService.childList(dict, parentId));
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+}
|