|
|
|
@ -23,6 +23,7 @@ import io.swagger.annotations.ApiOperation;
|
|
|
|
|
import io.swagger.annotations.ApiParam; |
|
|
|
|
import lombok.AllArgsConstructor; |
|
|
|
|
import org.springblade.core.boot.ctrl.BladeController; |
|
|
|
|
import org.springblade.core.cache.utils.CacheUtil; |
|
|
|
|
import org.springblade.core.mp.support.Condition; |
|
|
|
|
import org.springblade.core.mp.support.Query; |
|
|
|
|
import org.springblade.core.secure.annotation.PreAuth; |
|
|
|
@ -30,10 +31,9 @@ import org.springblade.core.tool.api.R;
|
|
|
|
|
import org.springblade.core.tool.constant.RoleConstant; |
|
|
|
|
import org.springblade.core.tool.utils.Func; |
|
|
|
|
import org.springblade.resource.entity.Oss; |
|
|
|
|
import org.springblade.resource.vo.OssVO; |
|
|
|
|
import org.springblade.resource.service.IOssService; |
|
|
|
|
import org.springblade.resource.vo.OssVO; |
|
|
|
|
import org.springblade.resource.wrapper.OssWrapper; |
|
|
|
|
import org.springframework.cache.annotation.CacheEvict; |
|
|
|
|
import org.springframework.web.bind.annotation.*; |
|
|
|
|
import springfox.documentation.annotations.ApiIgnore; |
|
|
|
|
|
|
|
|
@ -96,8 +96,8 @@ public class OssController extends BladeController {
|
|
|
|
|
@PostMapping("/save") |
|
|
|
|
@ApiOperationSupport(order = 4) |
|
|
|
|
@ApiOperation(value = "新增", notes = "传入oss") |
|
|
|
|
@CacheEvict(cacheNames = {RESOURCE_CACHE}, allEntries = true) |
|
|
|
|
public R save(@Valid @RequestBody Oss oss) { |
|
|
|
|
CacheUtil.clear(RESOURCE_CACHE); |
|
|
|
|
return R.status(ossService.save(oss)); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
@ -107,8 +107,8 @@ public class OssController extends BladeController {
|
|
|
|
|
@PostMapping("/update") |
|
|
|
|
@ApiOperationSupport(order = 5) |
|
|
|
|
@ApiOperation(value = "修改", notes = "传入oss") |
|
|
|
|
@CacheEvict(cacheNames = {RESOURCE_CACHE}, allEntries = true) |
|
|
|
|
public R update(@Valid @RequestBody Oss oss) { |
|
|
|
|
CacheUtil.clear(RESOURCE_CACHE); |
|
|
|
|
return R.status(ossService.updateById(oss)); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
@ -118,8 +118,8 @@ public class OssController extends BladeController {
|
|
|
|
|
@PostMapping("/submit") |
|
|
|
|
@ApiOperationSupport(order = 6) |
|
|
|
|
@ApiOperation(value = "新增或修改", notes = "传入oss") |
|
|
|
|
@CacheEvict(cacheNames = {RESOURCE_CACHE}, allEntries = true) |
|
|
|
|
public R submit(@Valid @RequestBody Oss oss) { |
|
|
|
|
CacheUtil.clear(RESOURCE_CACHE); |
|
|
|
|
return R.status(ossService.submit(oss)); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
@ -130,8 +130,8 @@ public class OssController extends BladeController {
|
|
|
|
|
@PostMapping("/remove") |
|
|
|
|
@ApiOperationSupport(order = 7) |
|
|
|
|
@ApiOperation(value = "逻辑删除", notes = "传入ids") |
|
|
|
|
@CacheEvict(cacheNames = {RESOURCE_CACHE}, allEntries = true) |
|
|
|
|
public R remove(@ApiParam(value = "主键集合", required = true) @RequestParam String ids) { |
|
|
|
|
CacheUtil.clear(RESOURCE_CACHE); |
|
|
|
|
return R.status(ossService.deleteLogic(Func.toLongList(ids))); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
@ -142,8 +142,8 @@ public class OssController extends BladeController {
|
|
|
|
|
@PostMapping("/enable") |
|
|
|
|
@ApiOperationSupport(order = 8) |
|
|
|
|
@ApiOperation(value = "配置启用", notes = "传入id") |
|
|
|
|
@CacheEvict(cacheNames = {RESOURCE_CACHE}, allEntries = true) |
|
|
|
|
public R enable(@ApiParam(value = "主键", required = true) @RequestParam Long id) { |
|
|
|
|
CacheUtil.clear(RESOURCE_CACHE); |
|
|
|
|
return R.status(ossService.enable(id)); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|