From 96f493d717f7238e956c3e870ba5437cb6cf4ae4 Mon Sep 17 00:00:00 2001 From: ludc Date: 星期五, 22 三月 2024 18:12:30 +0800 Subject: [PATCH] 集成相关更改,测试程序完善 --- Source/UBCS/ubcs-service-api/ubcs-code-api/src/main/java/com/vci/ubcs/code/vo/webserviceModel/applybz/ApplyBZDataVO.java | 161 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 161 insertions(+), 0 deletions(-) diff --git a/Source/UBCS/ubcs-service-api/ubcs-code-api/src/main/java/com/vci/ubcs/code/vo/webserviceModel/applybz/ApplyBZDataVO.java b/Source/UBCS/ubcs-service-api/ubcs-code-api/src/main/java/com/vci/ubcs/code/vo/webserviceModel/applybz/ApplyBZDataVO.java index 1090c66..eff9497 100644 --- a/Source/UBCS/ubcs-service-api/ubcs-code-api/src/main/java/com/vci/ubcs/code/vo/webserviceModel/applybz/ApplyBZDataVO.java +++ b/Source/UBCS/ubcs-service-api/ubcs-code-api/src/main/java/com/vci/ubcs/code/vo/webserviceModel/applybz/ApplyBZDataVO.java @@ -40,4 +40,165 @@ */ @XStreamImplicit private List<ProppertyVO> prop; + /*** + * 鎿嶄綔绫诲瀷 + */ + @XStreamAsAttribute + private String operationType; + /*** + *鏄惁鏄郴鍒楁爣鍑� + */ + @XStreamAsAttribute + private boolean seriesFlag; + /*** + * 鍙戝竷鏃堕棿 + */ + @XStreamAsAttribute + private String releaseTime; + + /*** + * 婧愭爣鍑嗗彿 + */ + @XStreamAsAttribute + private String oldCode; + + /*** + * 绯诲垪娴佹按 + */ + @XStreamAsAttribute + private String seriesFlow; + + /*** + * 鏄惁鍙樻洿绯诲垪 + */ + @XStreamAsAttribute + private boolean editSeriesFlag; + /*** + * 骞翠唬鍙� + */ + @XStreamAsAttribute + private String yearNumber; + + public String getId() { + return id; + } + + public void setId(String id) { + this.id = id; + } + + public String getCode() { + return code; + } + + public void setCode(String code) { + this.code = code; + } + + public String getStatus() { + return status; + } + + public void setStatus(String status) { + this.status = status; + } + + public String getCreator() { + return creator; + } + + public void setCreator(String creator) { + this.creator = creator; + } + + public String getEditor() { + return editor; + } + + public void setEditor(String editor) { + this.editor = editor; + } + + public List<ProppertyVO> getProp() { + return prop; + } + + public void setProp(List<ProppertyVO> prop) { + this.prop = prop; + } + + public String getOperationType() { + return operationType; + } + + public void setOperationType(String operationType) { + this.operationType = operationType; + } + + public boolean isSeriesFlag() { + return seriesFlag; + } + + public void setSeriesFlag(boolean seriesFlag) { + this.seriesFlag = seriesFlag; + } + + public String getReleaseTime() { + return releaseTime; + } + + public void setReleaseTime(String releaseTime) { + this.releaseTime = releaseTime; + } + + public String getOldCode() { + return oldCode; + } + + public void setOldCode(String oldCode) { + this.oldCode = oldCode; + } + + public String getSeriesFlow() { + return seriesFlow; + } + + public void setSeriesFlow(String seriesFlow) { + this.seriesFlow = seriesFlow; + } + + public boolean isEditSeriesFlag() { + return editSeriesFlag; + } + + public void setEditSeriesFlag(boolean editSeriesFlag) { + this.editSeriesFlag = editSeriesFlag; + } + + public String getYearNumber() { + return yearNumber; + } + + public void setYearNumber(String yearNumber) { + this.yearNumber = yearNumber; + } + + @Override + public String toString() { + return "ApplyBZDataVO{" + + "id='" + id + '\'' + + ", code='" + code + '\'' + + ", status='" + status + '\'' + + ", creator='" + creator + '\'' + + ", editor='" + editor + '\'' + + ", prop=" + prop + + ", operationType='" + operationType + '\'' + + ", seriesFlag=" + seriesFlag + + ", releaseTime='" + releaseTime + '\'' + + ", oldCode='" + oldCode + '\'' + + ", seriesFlow='" + seriesFlow + '\'' + + ", editSeriesFlag='" + editSeriesFlag + '\'' + + ", yearNumber='" + yearNumber + '\'' + + '}'; + } } -- Gitblit v1.9.3