|
@@ -41,6 +41,7 @@ public class TableElementConverter implements ITableElementConverter {
|
|
|
public static String JOIN_REG = "__\\d+_\\d+,?";
|
|
|
public static Pattern RP = Pattern.compile("(?<=E\\[)[^]]+(?=])");
|
|
|
|
|
|
+
|
|
|
private List<TableInfo> tableInfoList;
|
|
|
private Long contractId;
|
|
|
private Long projectId;
|
|
@@ -121,6 +122,11 @@ public class TableElementConverter implements ITableElementConverter {
|
|
|
public CompletableFuture<Map<Long, TreeNode<MeterTree>>> meterTreeMap;
|
|
|
/*存放计量计算结果*/
|
|
|
public List<ReportResult> reportResults ;
|
|
|
+
|
|
|
+ /*取小数*/
|
|
|
+ public Integer scale = 0;
|
|
|
+
|
|
|
+ public Integer payRadicScale = 2;
|
|
|
/*计量属性*/
|
|
|
/**根据表名获取对应表页对象*/
|
|
|
public LinkedList<NodeTable> getTableByName(String initTableName){
|