first commit

This commit is contained in:
刘通
2024-10-30 15:10:27 +08:00
parent 35e92433e3
commit 9dde3cf3c2
114 changed files with 14584 additions and 1979 deletions

View File

@@ -24,7 +24,7 @@ import java.util.Optional;
* Canal数据同步
* 实现ApplicationRunner接口springboot启动成功后会执行run方法
*/
@Component
public class CanalClient implements ApplicationRunner {
private final Logger logger = LoggerFactory.getLogger(this.getClass());

View File

@@ -210,7 +210,7 @@ public class DecisionTablesNode implements EngineRunnerNode {
if (row >= 0 && column >= 0) {
//根据行列去结果集中找结果返回
DecisionTablesResultVo resultSet = versionVo.getResultSet();
if (row < resultSet.getRows() && column < resultSet.getColumns()) {
if (row < resultSet.getRo() && column < resultSet.getColum()) {
String resultValue = resultSet.getResultValue();
JSONArray array = JSON.parseArray(resultValue);
JSONArray rowArray = JSON.parseArray(JSON.toJSONString(array.get(row)));