|
|
|
@ -86,8 +86,29 @@ public class PreDataInfo {
|
|
|
|
|
/** 政府性债务管理 */
|
|
|
|
|
private String governmentDebtManage;
|
|
|
|
|
|
|
|
|
|
/** 创建表空间用户名脚本是否有 */
|
|
|
|
|
private String userTablespaceStatus = "否";
|
|
|
|
|
|
|
|
|
|
/** 检验执行脚本是否有 */
|
|
|
|
|
private String checkoutIndicateStatus = "否";
|
|
|
|
|
|
|
|
|
|
/** 检验支付脚本是否有 */
|
|
|
|
|
private String checkoutPayStatus = "否";
|
|
|
|
|
|
|
|
|
|
/** 创建表空间用户名脚本 */
|
|
|
|
|
private String userTablespacePath;
|
|
|
|
|
|
|
|
|
|
/** 检验执行脚本 */
|
|
|
|
|
private String checkoutIndicatePath;
|
|
|
|
|
|
|
|
|
|
/** 检验支付脚本 */
|
|
|
|
|
private String checkoutPayPath;
|
|
|
|
|
|
|
|
|
|
/** 业务范围 */
|
|
|
|
|
private List<String> workRange;
|
|
|
|
|
|
|
|
|
|
/** 脚本文件名称列表 */
|
|
|
|
|
private List<String> sqlList;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @return the id
|
|
|
|
@ -480,6 +501,116 @@ public class PreDataInfo {
|
|
|
|
|
this.governmentDebtManage = governmentDebtManage;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @return the userTablespaceStatus
|
|
|
|
|
*/
|
|
|
|
|
public String getUserTablespaceStatus() {
|
|
|
|
|
return userTablespaceStatus;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @param userTablespaceStatus the userTablespaceStatus to set
|
|
|
|
|
*/
|
|
|
|
|
public void setUserTablespaceStatus(String userTablespaceStatus) {
|
|
|
|
|
this.userTablespaceStatus = userTablespaceStatus;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @return the checkoutIndicateStatus
|
|
|
|
|
*/
|
|
|
|
|
public String getCheckoutIndicateStatus() {
|
|
|
|
|
return checkoutIndicateStatus;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @param checkoutIndicateStatus the checkoutIndicateStatus to set
|
|
|
|
|
*/
|
|
|
|
|
public void setCheckoutIndicateStatus(String checkoutIndicateStatus) {
|
|
|
|
|
this.checkoutIndicateStatus = checkoutIndicateStatus;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @return the checkoutPayStatus
|
|
|
|
|
*/
|
|
|
|
|
public String getCheckoutPayStatus() {
|
|
|
|
|
return checkoutPayStatus;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @param checkoutPayStatus the checkoutPayStatus to set
|
|
|
|
|
*/
|
|
|
|
|
public void setCheckoutPayStatus(String checkoutPayStatus) {
|
|
|
|
|
this.checkoutPayStatus = checkoutPayStatus;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @return the userTablespacePath
|
|
|
|
|
*/
|
|
|
|
|
public String getUserTablespacePath() {
|
|
|
|
|
return userTablespacePath;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @param userTablespacePath the userTablespacePath to set
|
|
|
|
|
*/
|
|
|
|
|
public void setUserTablespacePath(String userTablespacePath) {
|
|
|
|
|
this.userTablespacePath = userTablespacePath;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @return the checkoutIndicatePath
|
|
|
|
|
*/
|
|
|
|
|
public String getCheckoutIndicatePath() {
|
|
|
|
|
return checkoutIndicatePath;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @param checkoutIndicatePath the checkoutIndicatePath to set
|
|
|
|
|
*/
|
|
|
|
|
public void setCheckoutIndicatePath(String checkoutIndicatePath) {
|
|
|
|
|
this.checkoutIndicatePath = checkoutIndicatePath;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @return the checkoutPayPath
|
|
|
|
|
*/
|
|
|
|
|
public String getCheckoutPayPath() {
|
|
|
|
|
return checkoutPayPath;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @param checkoutPayPath the checkoutPayPath to set
|
|
|
|
|
*/
|
|
|
|
|
public void setCheckoutPayPath(String checkoutPayPath) {
|
|
|
|
|
this.checkoutPayPath = checkoutPayPath;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @return the sqlList
|
|
|
|
|
*/
|
|
|
|
|
public List<String> getSqlList() {
|
|
|
|
|
return sqlList;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @param sqlList the sqlList to set
|
|
|
|
|
*/
|
|
|
|
|
public void setSqlList(List<String> sqlList) {
|
|
|
|
|
this.sqlList = sqlList;
|
|
|
|
|
if (null == this.sqlList) {
|
|
|
|
|
this.sqlList = new ArrayList<String>();
|
|
|
|
|
}
|
|
|
|
|
if ("是".equals(userTablespaceStatus)) {
|
|
|
|
|
this.sqlList.add(userTablespacePath);
|
|
|
|
|
}
|
|
|
|
|
if ("是".equals(checkoutIndicateStatus)) {
|
|
|
|
|
this.sqlList.add(checkoutIndicatePath);
|
|
|
|
|
}
|
|
|
|
|
if ("是".equals(checkoutPayStatus)) {
|
|
|
|
|
this.sqlList.add(checkoutPayPath);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @return the workRange
|
|
|
|
|
*/
|
|
|
|
|