|  |  |  | 
|---|
|  |  |  | 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())) { | 
|---|
|  |  |  | 
|---|
|  |  |  | article.setColumnIds(colIds); | 
|---|
|  |  |  | } | 
|---|
|  |  |  | article.setCompanyId(companyId); | 
|---|
|  |  |  |  | 
|---|
|  |  |  | IPage<ArticleEntity> listPage = articleMapper.selectArticleInPage(page, article); | 
|---|
|  |  |  |  | 
|---|
|  |  |  | List<ArticleData> list = new ArrayList<>(); | 
|---|