前端详情
(@PathVariable("id") Long id)
| 114 | * 前端详情 |
| 115 | */ |
| 116 | @RequestMapping("/detail/{id}") |
| 117 | public R detail(@PathVariable("id") Long id){ |
| 118 | ChatEntity chat = chatService.selectById(id); |
| 119 | return R.ok().put("data", chat); |
| 120 | } |
| 121 | |
| 122 | |
| 123 |
nothing calls this directly
no outgoing calls
no test coverage detected