4444
This commit is contained in:
@@ -351,6 +351,16 @@ public class CaseClinicalArticleController {
|
||||
5
|
||||
);
|
||||
|
||||
for (UserCommentClinicalArticleDto subComment : subComments) {
|
||||
// 查询医生
|
||||
doctorQueryWrapper = new LambdaQueryWrapper<>();
|
||||
doctorQueryWrapper.eq(CaseClinicalDoctorModel::getDoctorIden, subComment.getUserIden());
|
||||
caseClinicalDoctor = caseClinicalDoctorDao.selectOne(doctorQueryWrapper);
|
||||
if (caseClinicalDoctor != null) {
|
||||
subComment.setDoctorId(String.valueOf(caseClinicalDoctor.getDoctorId()));
|
||||
}
|
||||
}
|
||||
|
||||
dto.setSubComment(subComments);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user