bug 修复
This commit is contained in:
@@ -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);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user