From 353bc1b8b4650f144a65b9125457253051e68492 Mon Sep 17 00:00:00 2001 From: xiejun <xj@2023> Date: 星期四, 06 七月 2023 18:44:23 +0800 Subject: [PATCH] 集成获取分类接口(包含编码规则码段码值信息) --- Source/UBCS/ubcs-service-api/ubcs-code-api/src/main/java/com/vci/ubcs/code/vo/webserviceModel/coderule/CodeSectionVO.java | 33 +++++++++++++++++++++++++++++++-- 1 files changed, 31 insertions(+), 2 deletions(-) diff --git a/Source/UBCS/ubcs-service-api/ubcs-code-api/src/main/java/com/vci/ubcs/code/vo/webserviceModel/coderule/CodeSectionVO.java b/Source/UBCS/ubcs-service-api/ubcs-code-api/src/main/java/com/vci/ubcs/code/vo/webserviceModel/coderule/CodeSectionVO.java index 7065cc1..6169481 100644 --- a/Source/UBCS/ubcs-service-api/ubcs-code-api/src/main/java/com/vci/ubcs/code/vo/webserviceModel/coderule/CodeSectionVO.java +++ b/Source/UBCS/ubcs-service-api/ubcs-code-api/src/main/java/com/vci/ubcs/code/vo/webserviceModel/coderule/CodeSectionVO.java @@ -12,9 +12,13 @@ */ @XStreamAsAttribute private String id; - /*** - * 涓婚敭 + * 瑙勫垯鐮佹缂栧彿 + */ + @XStreamAsAttribute + private String sectionCode; + /*** + * 搴忓彿 */ @XStreamAsAttribute private String num; @@ -35,6 +39,11 @@ */ @XStreamAsAttribute private String secType; + /*** + * 鐮佹绫诲瀷鏄剧ず鍊� + */ + @XStreamAsAttribute + private String secTypeText; /** * 鎵�灞炵紪鐮佽鍒� @@ -162,17 +171,37 @@ this.sectionValue = sectionValue; } + public String getSectionCode() { + return sectionCode; + } + + public void setSectionCode(String sectionCode) { + this.sectionCode = sectionCode; + } + + public String getSecTypeText() { + return secTypeText; + } + + public void setSecTypeText(String secTypeText) { + this.secTypeText = secTypeText; + } + @Override public String toString() { return "CodeSectionVO{" + "id='" + id + '\'' + + ", sectionCode='" + sectionCode + '\'' + ", num='" + num + '\'' + ", name='" + name + '\'' + ", description='" + description + '\'' + ", secType='" + secType + '\'' + + ", secTypeText='" + secTypeText + '\'' + ", pkCodeRule='" + pkCodeRule + '\'' + ", codeSecLengthType='" + codeSecLengthType + '\'' + ", codeSecLength='" + codeSecLength + '\'' + + ", parentClassifySecOid='" + parentClassifySecOid + '\'' + + ", sectionValue=" + sectionValue + ", codeDateFormatStr='" + codeDateFormatStr + '\'' + '}'; } -- Gitblit v1.9.3