package com.walker.openocr.table; public class ColumnConfigItem extends ConfigItem{ // 该列数据存在几行数据 private int rowTotal = 0; public int getRowTotal() { return rowTotal; } public void setRowTotal(int rowTotal) { this.rowTotal = rowTotal; } }