公众号关注、订阅、消息数量
This commit is contained in:
parent
0cb7df196c
commit
13cbd30edb
|
|
@ -58,4 +58,13 @@ public class PlayletPublicDetailAppController {
|
||||||
return Result.success(playletPublicDetailAppService.getById(id));
|
return Result.success(playletPublicDetailAppService.getById(id));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ResponseBody
|
||||||
|
@GetMapping("/getByIdNoContent")
|
||||||
|
@ApiOperation(value = "查询文章详情,不含详情")
|
||||||
|
public Result<PlayletPublicDetail> getByIdNoContent(@RequestParam(value = "id") Long id) {
|
||||||
|
PlayletPublicDetail detail = playletPublicDetailAppService.getById(id);
|
||||||
|
detail.setContent(null);
|
||||||
|
return Result.success(detail);
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue