Commit 1352fdbe by daixing

fix

parent eb6d1dd8
...@@ -240,5 +240,5 @@ public interface BookGroupClassifyDao extends BaseDao<BookGroupClassify> { ...@@ -240,5 +240,5 @@ public interface BookGroupClassifyDao extends BaseDao<BookGroupClassify> {
void addClickClassify(Long wechatUserId, Long bookGroupId, Long classifyId); void addClickClassify(Long wechatUserId, Long bookGroupId, Long classifyId);
Map<Long, ClickClassifyDTO> mapClickClassify(List<Long> classifyId); Map<Long, ClickClassifyDTO> mapClickClassify(List<Long> classifyIds);
} }
...@@ -224,7 +224,7 @@ public class BookGroupClassifyDaoImpl extends BaseDaoImpl<BookGroupClassify> imp ...@@ -224,7 +224,7 @@ public class BookGroupClassifyDaoImpl extends BaseDaoImpl<BookGroupClassify> imp
@Override @Override
public Map<Long, ClickClassifyDTO> mapClickClassify(List<Long> classifyIds) { public Map<Long, ClickClassifyDTO> mapClickClassify(List<Long> classifyIds) {
Map<String, Object> paramMap = new HashMap(); Map<String, Object> paramMap = new HashMap();
paramMap.put("classifyId", classifyIds); paramMap.put("classifyIds", classifyIds);
return this.getSqlSession().selectMap(this.getStatement("mapClickClassify"), paramMap,"classifyId"); return this.getSqlSession().selectMap(this.getStatement("mapClickClassify"), paramMap,"classifyId");
} }
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment