@@ -63,7 +63,7 @@ public class ClueController {
@GetMapping("info")
@LoginRequired
- public Info info(@RequestParam("id") Long clueId){
+ public Info info(@RequestParam("id") String clueId){
return clueService.info(clueId);
}
@@ -116,7 +116,7 @@ public class ClueServiceImpl extends ServiceImpl<ClueMapper, Clue> implements IC
);
- public Info info(Long id){
+ public Info info(String id){
Clue clue = getById(id);
Info info = new Info();
BeanUtil.copyProperties(clue, info);