|
|
@ -23,6 +23,8 @@ public class ImppDynTable {
|
|
|
|
|
|
|
|
|
|
|
|
// 表单标题
|
|
|
|
// 表单标题
|
|
|
|
private String tableTitle;
|
|
|
|
private String tableTitle;
|
|
|
|
|
|
|
|
// 表单总记录数
|
|
|
|
|
|
|
|
private Long tableSize;
|
|
|
|
|
|
|
|
|
|
|
|
public ImppDynTable() {
|
|
|
|
public ImppDynTable() {
|
|
|
|
}
|
|
|
|
}
|
|
|
@ -30,4 +32,12 @@ public class ImppDynTable {
|
|
|
|
public ImppDynTable(String tableTitle) {
|
|
|
|
public ImppDynTable(String tableTitle) {
|
|
|
|
this.tableTitle = tableTitle;
|
|
|
|
this.tableTitle = tableTitle;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public Long getTableSize() {
|
|
|
|
|
|
|
|
return new Long(table.size());
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
private void setTableSize(Long tableSize) {
|
|
|
|
|
|
|
|
this.tableSize = tableSize;
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|