This commit is contained in:
wangjinlei
2024-05-28 17:46:39 +08:00
parent af4c961793
commit bda5846153
7 changed files with 44 additions and 26 deletions

View File

@@ -44,4 +44,11 @@ public class TaihuWelfareController {
taihuWelfareService.removeById(id);
return R.ok();
}
@RequestMapping("/getArticleDetail")
public R getArticleDetail(@RequestBody Map<String,Integer> map){
int id = map.get("id");
TaihuWelfareEntity byId = taihuWelfareService.getById(id);
return R.ok().put("result",byId);
}
}