|
|
@@ -17,31 +17,29 @@
|
|
|
package org.springblade.resource.controller;
|
|
|
|
|
|
import com.baomidou.mybatisplus.core.metadata.IPage;
|
|
|
+import com.github.xiaoymin.knife4j.annotations.ApiOperationSupport;
|
|
|
import io.swagger.annotations.Api;
|
|
|
import io.swagger.annotations.ApiOperation;
|
|
|
-import com.github.xiaoymin.knife4j.annotations.ApiOperationSupport;
|
|
|
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;
|
|
|
-import org.springblade.core.secure.utils.SecureUtil;
|
|
|
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.builder.OssBuilder;
|
|
|
import org.springblade.resource.entity.Oss;
|
|
|
import org.springblade.resource.entity.OssVO;
|
|
|
import org.springblade.resource.service.IOssService;
|
|
|
import org.springblade.resource.wrapper.OssWrapper;
|
|
|
+import org.springframework.cache.annotation.CacheEvict;
|
|
|
import org.springframework.web.bind.annotation.*;
|
|
|
import springfox.documentation.annotations.ApiIgnore;
|
|
|
|
|
|
import javax.validation.Valid;
|
|
|
|
|
|
-import static org.springblade.core.cache.constant.CacheConstant.SYS_CACHE;
|
|
|
+import static org.springblade.core.cache.constant.CacheConstant.RESOURCE_CACHE;
|
|
|
|
|
|
/**
|
|
|
* 控制器
|
|
|
@@ -98,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.evict(SYS_CACHE, OssBuilder.OSS_CODE, SecureUtil.getTenantId());
|
|
|
return R.status(ossService.save(oss));
|
|
|
}
|
|
|
|
|
|
@@ -109,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.evict(SYS_CACHE, OssBuilder.OSS_CODE, SecureUtil.getTenantId());
|
|
|
return R.status(ossService.updateById(oss));
|
|
|
}
|
|
|
|
|
|
@@ -120,9 +118,9 @@ 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.evict(SYS_CACHE, OssBuilder.OSS_CODE, SecureUtil.getTenantId());
|
|
|
- return R.status(ossService.saveOrUpdate(oss));
|
|
|
+ return R.status(ossService.submit(oss));
|
|
|
}
|
|
|
|
|
|
|
|
|
@@ -132,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.evict(SYS_CACHE, OssBuilder.OSS_CODE, SecureUtil.getTenantId());
|
|
|
return R.status(ossService.deleteLogic(Func.toLongList(ids)));
|
|
|
}
|
|
|
|
|
|
@@ -144,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.evict(SYS_CACHE, OssBuilder.OSS_CODE, SecureUtil.getTenantId());
|
|
|
return R.status(ossService.enable(id));
|
|
|
}
|
|
|
|