package cn.autoform.bean;
|
|
import java.util.ArrayList;
|
import java.util.List;
|
|
public class FormSolidiFication {
|
|
public FormSolidiFication(){}
|
|
public FormSolidiFication(String formId,Integer dataRowNum,String tenantId){
|
this.formId = formId;
|
this.dataRowNum = dataRowNum;
|
this.tenantId = tenantId;
|
}
|
|
private String formId;
|
|
private String tenantId;
|
|
private Integer dataRowNum;
|
|
private List<TableName> tableList = new ArrayList<>();;
|
|
|
public String getFormId() {
|
return formId;
|
}
|
|
|
public void setFormId(String formId) {
|
this.formId = formId;
|
}
|
|
|
public String getTenantId() {
|
return tenantId;
|
}
|
|
|
public void setTenantId(String tenantId) {
|
this.tenantId = tenantId;
|
}
|
|
|
public Integer getDataRowNum() {
|
return dataRowNum;
|
}
|
|
|
public void setDataRowNum(Integer dataRowNum) {
|
this.dataRowNum = dataRowNum;
|
}
|
|
|
public List<TableName> getTableList() {
|
return tableList;
|
}
|
|
|
public void setTableList(List<TableName> tableList) {
|
this.tableList = tableList;
|
}
|
|
|
|
|
}
|