|
|
@@ -23,26 +23,24 @@ 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.launch.constant.AppConstant;
|
|
|
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.modules.resource.builder.OssBuilder;
|
|
|
import org.springblade.modules.resource.entity.Oss;
|
|
|
import org.springblade.modules.resource.entity.OssVO;
|
|
|
import org.springblade.modules.resource.service.IOssService;
|
|
|
import org.springblade.modules.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;
|
|
|
|
|
|
/**
|
|
|
* 控制器
|
|
|
@@ -99,8 +97,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));
|
|
|
}
|
|
|
|
|
|
@@ -110,8 +108,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));
|
|
|
}
|
|
|
|
|
|
@@ -121,9 +119,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));
|
|
|
}
|
|
|
|
|
|
|
|
|
@@ -133,8 +131,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)));
|
|
|
}
|
|
|
|
|
|
@@ -145,8 +143,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));
|
|
|
}
|
|
|
|