From aa92b1b74d97629dfcd5fa85fec741cf55c11865 Mon Sep 17 00:00:00 2001 From: chenlw <874313221@qq.com> Date: Mon, 31 Oct 2016 18:54:21 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A2=9E=E5=8A=A0=E5=AD=97=E6=AE=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/com/platform/entities/DataInfoEntity.java | 34 +++++ src/com/platform/entities/PreDataInfo.java | 131 ++++++++++++++++++ 2 files changed, 165 insertions(+) diff --git a/src/com/platform/entities/DataInfoEntity.java b/src/com/platform/entities/DataInfoEntity.java index 2c227aa6..e45ce1d8 100644 --- a/src/com/platform/entities/DataInfoEntity.java +++ b/src/com/platform/entities/DataInfoEntity.java @@ -39,6 +39,12 @@ public class DataInfoEntity { private String mark; + /** 支付信息表 */ + private String payResult; + + /** 执行信息表 */ + private String execResult; + public DataInfoEntity() { } @@ -283,6 +289,34 @@ public class DataInfoEntity { this.mark = mark; } + /** + * @return the payResult + */ + public String getPayResult() { + return payResult; + } + + /** + * @param payResult the payResult to set + */ + public void setPayResult(String payResult) { + this.payResult = payResult; + } + + /** + * @return the execResult + */ + public String getExecResult() { + return execResult; + } + + /** + * @param execResult the execResult to set + */ + public void setExecResult(String execResult) { + this.execResult = execResult; + } + @Override public String toString() { return "id=" + this.id + " ,regionalismCode=" + this.regionalismCode diff --git a/src/com/platform/entities/PreDataInfo.java b/src/com/platform/entities/PreDataInfo.java index 6badbb42..f36b7b67 100644 --- a/src/com/platform/entities/PreDataInfo.java +++ b/src/com/platform/entities/PreDataInfo.java @@ -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 workRange; + + /** 脚本文件名称列表 */ + private List 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 getSqlList() { + return sqlList; + } + + /** + * @param sqlList the sqlList to set + */ + public void setSqlList(List sqlList) { + this.sqlList = sqlList; + if (null == this.sqlList) { + this.sqlList = new ArrayList(); + } + if ("是".equals(userTablespaceStatus)) { + this.sqlList.add(userTablespacePath); + } + if ("是".equals(checkoutIndicateStatus)) { + this.sqlList.add(checkoutIndicatePath); + } + if ("是".equals(checkoutPayStatus)) { + this.sqlList.add(checkoutPayPath); + } + } + /** * @return the workRange */