bug 修复

This commit is contained in:
bianyadong
2024-05-17 10:58:43 +08:00
parent f4eda7e473
commit 7e69b75466
3 changed files with 6 additions and 6 deletions

View File

@@ -38,9 +38,9 @@ public class AssessmentDataDAO {
return 0;
}
public List<AssessmentDataDO> selectList(Long shopId, String userId, List<Long> templateIdList) {
public List<AssessmentDataDO> selectList(String userId, List<Long> templateIdList) {
Example example = new Example(AssessmentDataDO.class);
example.createCriteria().andEqualTo("assessmentUserId", userId).andEqualTo("shopId", shopId).andIn("templateId", templateIdList);
example.createCriteria().andEqualTo("assessmentUserId", userId).andIn("templateId", templateIdList);
return assessmentDataMapper.selectByExample(example);
}