| | |
| | | import org.springblade.core.mp.support.Query; |
| | | import org.springblade.core.tool.api.R; |
| | | import org.springblade.core.tool.node.ForestNodeMerger; |
| | | import org.springframework.web.bind.annotation.GetMapping; |
| | | import org.springframework.web.bind.annotation.RequestMapping; |
| | | import org.springframework.web.bind.annotation.RequestParam; |
| | | import org.springframework.web.bind.annotation.RestController; |
| | | import org.springblade.core.tool.utils.ObjectUtil; |
| | | import org.springframework.web.bind.annotation.*; |
| | | import springfox.documentation.annotations.ApiIgnore; |
| | | |
| | | import java.util.List; |
| | |
| | | public class AttAdBaseController extends BladeController { |
| | | |
| | | private final IAttAdBaseService attAdBaseService; |
| | | |
| | | @ApiOperation(value = "中台行政区划-添加", notes = "中台行政区划-添加") |
| | | @PostMapping(value = "/save") |
| | | public R add(AttAdBase attAdBase) { |
| | | return R.data(attAdBaseService.save(attAdBase)); |
| | | } |
| | | |
| | | @ApiOperation(value = "中台行政区划-修改", notes = "中台行政区划-修改") |
| | | @PostMapping(value = "/edit") |
| | | public R edit(AttAdBase attAdBase) { |
| | | return R.data(attAdBaseService.updateById(attAdBase)); |
| | | } |
| | | |
| | | @ApiOperation(value = "中台行政区划-添加修改", notes = "中台行政区划-添加修改") |
| | | @PostMapping(value = "/submit") |
| | | public R submit(AttAdBase attAdBase) { |
| | | return R.data(attAdBaseService.saveOrUpdate(attAdBase)); |
| | | } |
| | | |
| | | @ApiOperation(value = "中台行政区划-删除", notes = "中台行政区划-删除") |
| | | @GetMapping(value = "/remove") |
| | | public R edit(String guid) { |
| | | return R.data(attAdBaseService.removeById(guid)); |
| | | } |
| | | |
| | | @ApiOperation(value = "中台行政区划-查询详情", notes = "中台行政区划-查询详情") |
| | | @GetMapping(value = "/getDetail") |
| | | public R getDetail(AttAdBase attAdBase) { |
| | | AttAdBaseVO one = attAdBaseService.getDetail(attAdBase); |
| | | return R.data(one); |
| | | } |
| | | |
| | | @ApiOperation(value = "中台行政区划-分页列表查询", notes = "中台行政区划-分页列表查询") |
| | | @GetMapping(value = "/list") |
| | |
| | | }) |
| | | @ApiOperation(value = "加载树列表", notes = "传入code") |
| | | public R<List<AttAdBaseVO>> selectAll(String parentCode, @ApiIgnore @RequestParam Map<String, Object> obj) { |
| | | String code = obj.get("code").toString(); |
| | | if (code.substring(0,4).indexOf("00") > -1) { |
| | | obj.put("code",code.substring(0,2)); |
| | | } else if (code.substring(0,6).indexOf("00") > -1) { |
| | | obj.put("code",code.substring(0,4)); |
| | | if (ObjectUtil.isNotEmpty(obj.get("code"))){ |
| | | String code = obj.get("code").toString(); |
| | | if (code.substring(0,4).indexOf("00") > -1) { |
| | | obj.put("code",code.substring(0,2)); |
| | | } else if (code.substring(0,6).indexOf("00") > -1) { |
| | | obj.put("code",code.substring(0,4)); |
| | | } |
| | | } |
| | | List<AttAdBaseVO> list = attAdBaseService.lazyTreeAll(parentCode, obj); |
| | | return R.data(listNodeLazyVO(list)); |