fix
Helius
2022-07-11 7d917b206e43a5ee4cdb9e1458f3af10e5e586f3
src/main/java/com/xcong/farmer/cms/core/handler/ArticlesDataParserHandler.java
@@ -34,7 +34,6 @@
        log.info("文章列表解析");
        Long companyId = (Long) node.getSystemDataValue("companyId");
        Articles param = (Articles) node.getParam();
        ArticleEntity article = new ArticleEntity();
        Page<ArticleEntity> page = new Page<>(Integer.parseInt(param.getPage()), Integer.parseInt(param.getLimit()));
        if (StrUtil.isEmpty(param.getColId())) {
@@ -51,6 +50,14 @@
            article.setColumnIds(colIds);
        }
        article.setCompanyId(companyId);
        Integer releaseType = (Integer) node.getSystemDataValue("releaseType");
        if (releaseType == null) {
            article.setReleaseType(2);
        } else {
            article.setReleaseType(releaseType);
        }
        IPage<ArticleEntity> listPage = articleMapper.selectArticleInPage(page, article);
        List<ArticleData> list = new ArrayList<>();