后端详情
(@PathVariable("id") Long id)
| 105 | * 后端详情 |
| 106 | */ |
| 107 | @RequestMapping("/info/{id}") |
| 108 | public R info(@PathVariable("id") Long id){ |
| 109 | ChatEntity chat = chatService.selectById(id); |
| 110 | return R.ok().put("data", chat); |
| 111 | } |
| 112 | |
| 113 | /** |
| 114 | * 前端详情 |
nothing calls this directly
no outgoing calls
no test coverage detected