前言
正文
1、接口别随便暴露
/**
* 根据ID查询患者信息
*/
@GetMapping("/{id}")
public AjaxResult getById(@PathVariable("id") Long id) {
PersonInfo personInfo = personInfoService.selectPersonInfoById(id);
return AjaxResult.success(personInfo);
}
2、什么是横向越权
3、权限控制不了吗
4、如何防范
总结
如果喜欢,请点赞关注哦↓↓↓,持续分享干货!