Authored by zhengyouwei

add

... ... @@ -108,6 +108,9 @@ public class ManagerCtrl {
@RequestMapping("/deleteAuthModule")
@ResponseBody
public BaseResponse deleteAuthModule(String name) {
if("manage".equals(name)){
return new BaseResponse(201,"此模块无法delete");
}
Map map = new HashMap<>();
map.put("name",name);
BaseResponse response = httpRestClient.defaultGet(HttpUriContants.MODULE_DELETE_NAME, BaseResponse.class, map);
... ...