| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123 |
- /*
- * 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.modules.system.controller;
- import io.swagger.annotations.*;
- import lombok.AllArgsConstructor;
- import org.springblade.core.boot.ctrl.BladeController;
- import org.springblade.core.mp.support.Condition;
- import org.springblade.core.tool.api.R;
- import org.springblade.core.tool.node.INode;
- import org.springblade.core.tool.utils.Func;
- import org.springblade.modules.system.entity.Dict;
- import org.springblade.modules.system.service.IDictService;
- import org.springblade.modules.system.vo.DictVO;
- import org.springblade.modules.system.wrapper.DictWrapper;
- import org.springframework.web.bind.annotation.*;
- import springfox.documentation.annotations.ApiIgnore;
- import javax.validation.Valid;
- import java.util.List;
- import java.util.Map;
- /**
- * 控制器
- *
- * @author Chill
- * @since 2018-12-24
- */
- @ApiIgnore
- @RestController
- @AllArgsConstructor
- @RequestMapping("/blade-system/dict")
- @Api(value = "字典", tags = "字典")
- public class DictController extends BladeController {
- private IDictService dictService;
- /**
- * 详情
- */
- @GetMapping("/detail")
- @ApiOperation(value = "详情", notes = "传入dict", position = 1)
- public R<DictVO> detail(Dict dict) {
- Dict detail = dictService.getOne(Condition.getQueryWrapper(dict));
- DictWrapper dictWrapper = new DictWrapper(dictService);
- return R.data(dictWrapper.entityVO(detail));
- }
- /**
- * 列表
- */
- @GetMapping("/list")
- @ApiImplicitParams({
- @ApiImplicitParam(name = "code", value = "字典编号", paramType = "query", dataType = "string"),
- @ApiImplicitParam(name = "dictValue", value = "字典名称", paramType = "query", dataType = "string")
- })
- @ApiOperation(value = "列表", notes = "传入dict", position = 2)
- public R<List<INode>> list(@ApiIgnore @RequestParam Map<String, Object> dict) {
- @SuppressWarnings("unchecked")
- List<Dict> list = dictService.list(Condition.getQueryWrapper(dict, Dict.class).lambda().orderByAsc(Dict::getSort));
- DictWrapper dictWrapper = new DictWrapper();
- return R.data(dictWrapper.listNodeVO(list));
- }
- /**
- * 获取字典树形结构
- *
- * @return
- */
- @GetMapping("/tree")
- @ApiOperation(value = "树形结构", notes = "树形结构", position = 3)
- public R<List<DictVO>> tree() {
- List<DictVO> tree = dictService.tree();
- return R.data(tree);
- }
- /**
- * 新增或修改
- */
- @PostMapping("/submit")
- @ApiOperation(value = "新增或修改", notes = "传入dict", position = 6)
- public R submit(@Valid @RequestBody Dict dict) {
- return R.status(dictService.saveOrUpdate(dict));
- }
- /**
- * 删除
- */
- @PostMapping("/remove")
- @ApiOperation(value = "物理删除", notes = "传入ids", position = 7)
- public R remove(@ApiParam(value = "主键集合", required = true) @RequestParam String ids) {
- return R.status(dictService.removeByIds(Func.toIntList(ids)));
- }
- /**
- * 获取字典
- *
- * @return
- */
- @GetMapping("/dictionary")
- @ApiOperation(value = "获取字典", notes = "获取字典", position = 8)
- public R<List<Dict>> dictionary(String code) {
- List<Dict> tree = dictService.getList(code);
- return R.data(tree);
- }
- }
|