This commit is contained in:
admin
2024-07-24 21:48:52 +08:00
parent 7ccfde6ead
commit 3029bffadf
4 changed files with 11 additions and 9 deletions

View File

@@ -79,7 +79,7 @@ public class WxArticleController {
@PostMapping("/clerk/listByPage")
public R clerkListByPage(@Validated @RequestBody PlayClerkArticleQueryVo vo) {
vo.setClerkId(ThreadLocalRequestDetail.getClerkUserInfo().getId());
return R.ok(playClerkArticleInfoService.selectByPage(vo));
return R.ok(playClerkArticleInfoService.selectByPage(vo,true));
}