Commit 460e4d36 by 徐高华

Merge branch 'feature/202310月零散迭代' into 'developer'

退群门店

See merge request !1492
parents 87761b08 efdb4c5d
......@@ -267,18 +267,18 @@ public class TestController extends WebBaseController {
@RequestMapping("/get-cache")
@ResponseBody
public Object getCache(String key) {
public String getCache(String key) {
Object o = RedisUtil.getCache(key) ;
return o ;
return o.toString() ;
}
@RequestMapping("/del-cache")
@ResponseBody
public Object delCache(String key) {
public String delCache(String key) {
Object o = RedisUtil.getCache(key) ;
if(null != o) {
RedisUtil.delCache(key);
}
return o ;
return o.toString() ;
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment