Browse Source

feat:[试验管理][试验方法]未读标记

master
HanLong 3 months ago
parent
commit
f964773e32
2 changed files with 2 additions and 2 deletions
  1. +1
    -1
      hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/service/IStudyMethodService.java
  2. +1
    -1
      hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/service/impl/StudyMethodServiceImpl.java

+ 1
- 1
hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/service/IStudyMethodService.java View File

@ -39,5 +39,5 @@ public interface IStudyMethodService extends IService
* @param studySubjectId 试验科学id
* @return
*/
void getReadAllMethodStatus(Long userId, Long studyId, Long studySubjectId);
void checkAllMethodReadStatus(Long userId, Long studyId, Long studySubjectId);
}

+ 1
- 1
hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/service/impl/StudyMethodServiceImpl.java View File

@ -139,7 +139,7 @@ public class StudyMethodServiceImpl extends ServiceImpl
}
@Override
public void getReadAllMethodStatus(Long userId, Long studyId, Long studySubjectId) {
public void checkAllMethodReadStatus(Long userId, Long studyId, Long studySubjectId) {
LambdaQueryWrapper<StudyMethodRead> queryWrapper = new LambdaQueryWrapper<>();
queryWrapper.eq(StudyMethodRead::getQmrId, userId)
.eq(StudyMethodRead::getStudyId, studyId);

Loading…
Cancel
Save