From 03fc4cfd7abfd125b942417284999a0aea7305d9 Mon Sep 17 00:00:00 2001
From: xiejun <xiejun@vci-tech.com>
Date: 星期三, 15 一月 2025 21:35:07 +0800
Subject: [PATCH] 产品型号集成,类型转换,人员组织加日志,申请接口引用码段值校验

---
 Source/UBCS/ubcs-service-api/ubcs-code-api/src/main/java/com/vci/ubcs/code/vo/webserviceModel/coderule/CodeSectionVO.java |   51 ++++++++++++++++++++++++++++++++++++++++++++++++---
 1 files changed, 48 insertions(+), 3 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 034594e..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;
 
 	/**
 	 * 鎵�灞炵紪鐮佽鍒�
@@ -67,7 +76,7 @@
 	/***
 	 * 鐮佹鐮佸��
 	 */
-	private List<CodeSectionValueVO> sectionValues;
+	private List<CodeSectionValueVO> sectionValue;
 	/**
 	 * 鏃ユ湡鏍煎紡
 	 */
@@ -146,17 +155,53 @@
 		this.codeDateFormatStr = codeDateFormatStr;
 	}
 
+	public String getParentClassifySecOid() {
+		return parentClassifySecOid;
+	}
+
+	public void setParentClassifySecOid(String parentClassifySecOid) {
+		this.parentClassifySecOid = parentClassifySecOid;
+	}
+
+	public List<CodeSectionValueVO> getSectionValue() {
+		return sectionValue;
+	}
+
+	public void setSectionValue(List<CodeSectionValueVO> sectionValue) {
+		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