¶Ô±ÈÐÂÎļþ |
| | |
| | | /* |
| | | * 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 ${package.Controller}; |
| | | |
| | | import io.swagger.annotations.Api; |
| | | import io.swagger.annotations.ApiOperation; |
| | | import io.swagger.annotations.ApiParam; |
| | | import com.github.xiaoymin.knife4j.annotations.ApiOperationSupport; |
| | | import lombok.AllArgsConstructor; |
| | | import javax.validation.Valid; |
| | | |
| | | import org.springblade.core.secure.BladeUser; |
| | | 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.springframework.web.bind.annotation.*; |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | import ${packageName!}.entity.${modelClass!}Entity; |
| | | import ${packageName!}.vo.${modelClass!}VO; |
| | | #if(hasWrapper) { |
| | | import ${packageName!}.wrapper.${modelClass!}Wrapper; |
| | | #} |
| | | import ${packageName!}.service.I${modelClass!}Service; |
| | | #if(isNotEmpty(superControllerClassPackage)){ |
| | | import ${superControllerClassPackage!}; |
| | | #} |
| | | #if(templateType=="tree"){ |
| | | import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; |
| | | import org.springblade.core.tool.constant.BladeConstant; |
| | | import java.util.List; |
| | | #} |
| | | #if(templateType=="tree"&&!hasWrapper){ |
| | | import ${packageName!}.wrapper.${modelClass!}Wrapper; |
| | | #} |
| | | |
| | | /** |
| | | * ${codeName!} æ§å¶å¨ |
| | | * |
| | | * @author ${author!} |
| | | * @since ${date!} |
| | | */ |
| | | @RestController |
| | | @AllArgsConstructor |
| | | #if(hasServiceName) { |
| | | @RequestMapping("${serviceName!}/${modelCode!}") |
| | | #}else{ |
| | | @RequestMapping("/${modelCode!}") |
| | | #} |
| | | @Api(value = "${codeName!}", tags = "${codeName!}æ¥å£") |
| | | #if(isNotEmpty(superControllerClass)){ |
| | | public class ${modelClass!}Controller extends ${superControllerClass!} { |
| | | #} |
| | | #else{ |
| | | public class ${modelClass!}Controller { |
| | | #} |
| | | |
| | | private final I${modelClass!}Service ${modelCode!}Service; |
| | | |
| | | #if(hasWrapper){ |
| | | /** |
| | | * ${codeName!} 详æ
|
| | | */ |
| | | @GetMapping("/detail") |
| | | @ApiOperationSupport(order = 1) |
| | | @ApiOperation(value = "详æ
", notes = "ä¼ å
¥${modelCode!}") |
| | | public R<${modelClass!}VO> detail(${modelClass!}Entity ${modelCode!}) { |
| | | ${modelClass!}Entity detail = ${modelCode!}Service.getOne(Condition.getQueryWrapper(${modelCode!})); |
| | | return R.data(${modelClass!}Wrapper.build().entityVO(detail)); |
| | | } |
| | | #if(templateType=="tree"){ |
| | | /** |
| | | * ${codeName!} æ å表 |
| | | */ |
| | | @GetMapping("/list") |
| | | @ApiOperationSupport(order = 2) |
| | | @ApiOperation(value = "å页", notes = "ä¼ å
¥notice") |
| | | public R<List<${modelClass!}VO>> list(${modelClass!}Entity ${modelCode!}, BladeUser bladeUser) { |
| | | QueryWrapper<${modelClass!}Entity> queryWrapper = Condition.getQueryWrapper(${modelCode!}); |
| | | List<${modelClass!}Entity> list = ${modelCode!}Service.list((!bladeUser.getTenantId().equals(BladeConstant.ADMIN_TENANT_ID)) ? queryWrapper.lambda().eq(${modelClass!}Entity::getTenantId, bladeUser.getTenantId()) : queryWrapper); |
| | | return R.data(${modelClass!}Wrapper.build().treeNodeVO(list)); |
| | | } |
| | | #}else{ |
| | | /** |
| | | * ${codeName!} å页 |
| | | */ |
| | | @GetMapping("/list") |
| | | @ApiOperationSupport(order = 2) |
| | | @ApiOperation(value = "å页", notes = "ä¼ å
¥${modelCode!}") |
| | | public R<IPage<${modelClass!}VO>> list(${modelClass!}Entity ${modelCode!}, Query query) { |
| | | IPage<${modelClass!}Entity> pages = ${modelCode!}Service.page(Condition.getPage(query), Condition.getQueryWrapper(${modelCode!})); |
| | | return R.data(${modelClass!}Wrapper.build().pageVO(pages)); |
| | | } |
| | | #} |
| | | #}else{ |
| | | /** |
| | | * ${codeName!} 详æ
|
| | | */ |
| | | @GetMapping("/detail") |
| | | @ApiOperationSupport(order = 1) |
| | | @ApiOperation(value = "详æ
", notes = "ä¼ å
¥${modelCode!}") |
| | | public R<${modelClass!}Entity> detail(${modelClass!}Entity ${modelCode!}) { |
| | | ${modelClass!}Entity detail = ${modelCode!}Service.getOne(Condition.getQueryWrapper(${modelCode!})); |
| | | return R.data(detail); |
| | | } |
| | | #if(templateType=="tree"){ |
| | | /** |
| | | * ${codeName!} æ å表 |
| | | */ |
| | | @GetMapping("/list") |
| | | @ApiOperationSupport(order = 2) |
| | | @ApiOperation(value = "å页", notes = "ä¼ å
¥notice") |
| | | public R<List<${modelClass!}VO>> list(${modelClass!}Entity ${modelCode!}, BladeUser bladeUser) { |
| | | QueryWrapper<${modelClass!}Entity> queryWrapper = Condition.getQueryWrapper(${modelCode!}); |
| | | List<${modelClass!}Entity> list = ${modelCode!}Service.list((!bladeUser.getTenantId().equals(BladeConstant.ADMIN_TENANT_ID)) ? queryWrapper.lambda().eq(${modelClass!}Entity::getTenantId, bladeUser.getTenantId()) : queryWrapper); |
| | | return R.data(${modelClass!}Wrapper.build().treeNodeVO(list)); |
| | | } |
| | | #}else{ |
| | | /** |
| | | * ${codeName!} å页 |
| | | */ |
| | | @GetMapping("/list") |
| | | @ApiOperationSupport(order = 2) |
| | | @ApiOperation(value = "å页", notes = "ä¼ å
¥${modelCode!}") |
| | | public R<IPage<${modelClass!}Entity>> list(${modelClass!}Entity ${modelCode!}, Query query) { |
| | | IPage<${modelClass!}Entity> pages = ${modelCode!}Service.page(Condition.getPage(query), Condition.getQueryWrapper(${modelCode!})); |
| | | return R.data(pages); |
| | | } |
| | | #} |
| | | #} |
| | | |
| | | /** |
| | | * ${codeName!} èªå®ä¹å页 |
| | | */ |
| | | @GetMapping("/page") |
| | | @ApiOperationSupport(order = 3) |
| | | @ApiOperation(value = "å页", notes = "ä¼ å
¥${modelCode!}") |
| | | public R<IPage<${modelClass!}VO>> page(${modelClass!}VO ${modelCode!}, Query query) { |
| | | IPage<${modelClass!}VO> pages = ${modelCode!}Service.select${modelClass!}Page(Condition.getPage(query), ${modelCode!}); |
| | | return R.data(pages); |
| | | } |
| | | |
| | | /** |
| | | * ${codeName!} æ°å¢ |
| | | */ |
| | | @PostMapping("/save") |
| | | @ApiOperationSupport(order = 4) |
| | | @ApiOperation(value = "æ°å¢", notes = "ä¼ å
¥${modelCode!}") |
| | | public R save(@Valid @RequestBody ${modelClass!}Entity ${modelCode!}) { |
| | | return R.status(${modelCode!}Service.save(${modelCode!})); |
| | | } |
| | | |
| | | /** |
| | | * ${codeName!} ä¿®æ¹ |
| | | */ |
| | | @PostMapping("/update") |
| | | @ApiOperationSupport(order = 5) |
| | | @ApiOperation(value = "ä¿®æ¹", notes = "ä¼ å
¥${modelCode!}") |
| | | public R update(@Valid @RequestBody ${modelClass!}Entity ${modelCode!}) { |
| | | return R.status(${modelCode!}Service.updateById(${modelCode!})); |
| | | } |
| | | |
| | | /** |
| | | * ${codeName!} æ°å¢æä¿®æ¹ |
| | | */ |
| | | @PostMapping("/submit") |
| | | @ApiOperationSupport(order = 6) |
| | | @ApiOperation(value = "æ°å¢æä¿®æ¹", notes = "ä¼ å
¥${modelCode!}") |
| | | public R submit(@Valid @RequestBody ${modelClass!}Entity ${modelCode!}) { |
| | | return R.status(${modelCode!}Service.saveOrUpdate(${modelCode!})); |
| | | } |
| | | |
| | | #if(isNotEmpty(superEntityClass)){ |
| | | /** |
| | | * ${codeName!} å é¤ |
| | | */ |
| | | @PostMapping("/remove") |
| | | @ApiOperationSupport(order = 7) |
| | | @ApiOperation(value = "é»è¾å é¤", notes = "ä¼ å
¥ids") |
| | | public R remove(@ApiParam(value = "主é®éå", required = true) @RequestParam String ids) { |
| | | return R.status(${modelCode!}Service.deleteLogic(Func.toLongList(ids))); |
| | | } |
| | | #}else{ |
| | | /** |
| | | * ${codeName!} å é¤ |
| | | */ |
| | | @PostMapping("/remove") |
| | | @ApiOperationSupport(order = 7) |
| | | @ApiOperation(value = "å é¤", notes = "ä¼ å
¥ids") |
| | | public R remove(@ApiParam(value = "主é®éå", required = true) @RequestParam String ids) { |
| | | return R.status(${modelCode!}Service.removeByIds(Func.toLongList(ids))); |
| | | } |
| | | #} |
| | | |
| | | #if(templateType=="tree"){ |
| | | /** |
| | | * ${codeName!} æ å½¢ç»æ |
| | | */ |
| | | @GetMapping("/tree") |
| | | @ApiOperationSupport(order = 8) |
| | | @ApiOperation(value = "æ å½¢ç»æ", notes = "æ å½¢ç»æ") |
| | | public R<List<${modelClass!}VO>> tree(String tenantId, BladeUser bladeUser) { |
| | | List<${modelClass!}VO> tree = ${modelCode!}Service.tree(Func.toStrWithEmpty(tenantId, bladeUser.getTenantId())); |
| | | return R.data(tree); |
| | | } |
| | | #} |
| | | |
| | | } |