|
@@ -0,0 +1,26 @@
|
|
|
|
|
+package com.dgtly.web.controller.system;
|
|
|
|
|
+
|
|
|
|
|
+import com.dgtly.common.core.controller.BaseController;
|
|
|
|
|
+import org.apache.shiro.authz.annotation.RequiresPermissions;
|
|
|
|
|
+import org.springframework.stereotype.Controller;
|
|
|
|
|
+import org.springframework.web.bind.annotation.GetMapping;
|
|
|
|
|
+import org.springframework.web.bind.annotation.RequestMapping;
|
|
|
|
|
+
|
|
|
|
|
+/**
|
|
|
|
|
+ * 缓存清理
|
|
|
|
|
+ *
|
|
|
|
|
+ * @author ruoyi
|
|
|
|
|
+ */
|
|
|
|
|
+@Controller
|
|
|
|
|
+@RequestMapping("/system/getCustomerData")
|
|
|
|
|
+public class getCustomerDataController extends BaseController
|
|
|
|
|
+{
|
|
|
|
|
+ private String prefix = "system/getCustomerData";
|
|
|
|
|
+
|
|
|
|
|
+ @RequiresPermissions("system:getCustomerData:view")
|
|
|
|
|
+ @GetMapping()
|
|
|
|
|
+ public String clearStorage()
|
|
|
|
|
+ {
|
|
|
|
|
+ return prefix + "/getCustomerData";
|
|
|
|
|
+ }
|
|
|
|
|
+}
|