This commit is contained in:
张良(004796)
2024-03-18 15:45:08 +08:00
parent a09806bbc4
commit 2b50c4b67c
10 changed files with 94 additions and 10 deletions

View File

@@ -87,7 +87,7 @@ public class AnchorController extends BaseController {
if(user == null){
return R.fail("用户不存在");
}
anchorService.joinAnchor(user.getId());
anchorService.joinAnchor(user.getId(),true);
return R.ok();
}