Commit c00a4b8c37dc74df30b73b18af74d4f6e001396f
1 parent
e0efd78d
update
Showing
1 changed file
with
5 additions
and
1 deletions
src/main/java/com/cnlive/shenhe/service/serviceImpl/ContentServiceImpl.java
| ... | ... | @@ -89,7 +89,11 @@ public class ContentServiceImpl implements ContentService { |
| 89 | 89 | criteria.andEqualTo("content_tag", checkParamList); |
| 90 | 90 | criteria.andEqualTo("shenhe_type", CommonConst.AUDIT_TYPE_MACHANE); |
| 91 | 91 | criteria.andEqualTo("receive_status", CommonConst.RECEIVE_BEFORE); |
| 92 | - return shyContentMapper.selectByExampleAndRowBounds(example, new RowBounds(0, 100)); | |
| 92 | + List<ShyContent> shyContents = shyContentMapper.selectByExampleAndRowBounds(example, new RowBounds(0, 100)); | |
| 93 | + for (ShyContent shyContent : shyContents) { | |
| 94 | + logger.info("contentId:{}" + shyContent.getContent_id()); | |
| 95 | + } | |
| 96 | + return shyContents; | |
| 93 | 97 | } |
| 94 | 98 | |
| 95 | 99 | /** | ... | ... |