提交修改

This commit is contained in:
quyixiao 2025-11-19 22:30:15 +08:00
parent 44ce3e5906
commit f7dc7458f0

View File

@ -153,6 +153,7 @@ public class AdminCommentController {
VvCommentEntity vvCommentEntity = vvCommentDao.selectVvCommentById(vvCommentRequest.getId());
vvCommentEntity.setStatus(CommentStatusEnums.approval_not_pass.getStatus());
vvCommentEntity.setRejectUser(vvCommentRequest.getUserName());
vvCommentEntity.setReason(vvCommentRequest.getReason());
vvCommentDao.updateVvCommentById(vvCommentEntity);
return R.ok();
}