| | |
| | | |
| | | @Override |
| | | public void dataParser(AttrNode node) { |
| | | log.info("文章列表解析"); |
| | | // log.info("文章列表解析"); |
| | | Long companyId = (Long) node.getSystemDataValue("companyId"); |
| | | String companyCode = (String) node.getSystemDataValue("companyCode"); |
| | | String baseUrl = (String) node.getSystemDataValue("baseUrl"); |
| | |
| | | |
| | | List<ArticleData> list = new ArrayList<>(); |
| | | for (ArticleEntity record : listPage.getRecords()) { |
| | | ArticleData articleData = entityToData(record, baseUrl + companyCode); |
| | | ArticleData articleData = entityToData(record, baseUrl); |
| | | list.add(articleData); |
| | | } |
| | | |