work in progress
This commit is contained in:
parent
e460b26abb
commit
c1808d7e9b
41 changed files with 349 additions and 393 deletions
|
|
@ -0,0 +1,17 @@
|
|||
package org.chtijbug.drools.console.dto;
|
||||
|
||||
import java.math.BigDecimal;
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
|
||||
public class VariableDataList {
|
||||
private List<VariableData> rows = new ArrayList<>();
|
||||
|
||||
public List<VariableData> getRows() {
|
||||
return rows;
|
||||
}
|
||||
|
||||
public void setRows(List<VariableData> rows) {
|
||||
this.rows = rows;
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,16 @@
|
|||
package org.chtijbug.drools.console.dto;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
|
||||
public class VariableDefinitionList {
|
||||
private List<VariableDefinition> variables = new ArrayList<>();
|
||||
|
||||
public List<VariableDefinition> getVariables() {
|
||||
return variables;
|
||||
}
|
||||
|
||||
public void setVariables(List<VariableDefinition> variables) {
|
||||
this.variables = variables;
|
||||
}
|
||||
}
|
||||
Loading…
Add table
editor.link_modal.header
Reference in a new issue