From 1157e8e97e24ec7938deea2e3345a502644fc256 Mon Sep 17 00:00:00 2001 From: wang1 <844966816@qq.com> Date: 星期三, 05 七月 2023 16:44:23 +0800 Subject: [PATCH] Merge remote-tracking branch 'origin/master' --- Source/UBCS/ubcs-service-api/ubcs-code-api/src/main/java/com/vci/ubcs/code/vo/webserviceModel/coderule/CodeSectionVO.java | 179 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 179 insertions(+), 0 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 new file mode 100644 index 0000000..7065cc1 --- /dev/null +++ b/Source/UBCS/ubcs-service-api/ubcs-code-api/src/main/java/com/vci/ubcs/code/vo/webserviceModel/coderule/CodeSectionVO.java @@ -0,0 +1,179 @@ +package com.vci.ubcs.code.vo.webserviceModel.coderule; + +import com.thoughtworks.xstream.annotations.XStreamAlias; +import com.thoughtworks.xstream.annotations.XStreamAsAttribute; + +import java.util.List; + +@XStreamAlias("codeSection") +public class CodeSectionVO { + /*** + * 涓婚敭 + */ + @XStreamAsAttribute + private String id; + + /*** + * 涓婚敭 + */ + @XStreamAsAttribute + private String num; + /*** + * 鐮佹鍚嶇О + */ + @XStreamAsAttribute + private String name; + /** + * 鎻忚堪 + */ + @XStreamAsAttribute + private String description; + + + /** + * 鐮佹绫诲瀷 + */ + @XStreamAsAttribute + private String secType; + + /** + * 鎵�灞炵紪鐮佽鍒� + */ + @XStreamAsAttribute + private String pkCodeRule; + + + /** + * 鐮佹闀垮害绫诲瀷 + */ + @XStreamAsAttribute + private String codeSecLengthType; + + + + /** + * 鐮佹闀垮害 + */ + @XStreamAsAttribute + private String codeSecLength; + + + /** + * 鐖跺垎绫荤爜娈典富閿� + */ + @XStreamAsAttribute + private String parentClassifySecOid; + + /*** + * 鐮佹鐮佸�� + */ + private List<CodeSectionValueVO> sectionValue; + /** + * 鏃ユ湡鏍煎紡 + */ + @XStreamAsAttribute + private String codeDateFormatStr; + + public String getId() { + return id; + } + + public void setId(String id) { + this.id = id; + } + + public String getNum() { + return num; + } + + public void setNum(String num) { + this.num = num; + } + + public String getName() { + return name; + } + + public void setName(String name) { + this.name = name; + } + + public String getDescription() { + return description; + } + + public void setDescription(String description) { + this.description = description; + } + + public String getSecType() { + return secType; + } + + public void setSecType(String secType) { + this.secType = secType; + } + + public String getPkCodeRule() { + return pkCodeRule; + } + + public void setPkCodeRule(String pkCodeRule) { + this.pkCodeRule = pkCodeRule; + } + + public String getCodeSecLengthType() { + return codeSecLengthType; + } + + public void setCodeSecLengthType(String codeSecLengthType) { + this.codeSecLengthType = codeSecLengthType; + } + + public String getCodeSecLength() { + return codeSecLength; + } + + public void setCodeSecLength(String codeSecLength) { + this.codeSecLength = codeSecLength; + } + + public String getCodeDateFormatStr() { + return codeDateFormatStr; + } + + public void setCodeDateFormatStr(String codeDateFormatStr) { + 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; + } + + @Override + public String toString() { + return "CodeSectionVO{" + + "id='" + id + '\'' + + ", num='" + num + '\'' + + ", name='" + name + '\'' + + ", description='" + description + '\'' + + ", secType='" + secType + '\'' + + ", pkCodeRule='" + pkCodeRule + '\'' + + ", codeSecLengthType='" + codeSecLengthType + '\'' + + ", codeSecLength='" + codeSecLength + '\'' + + ", codeDateFormatStr='" + codeDateFormatStr + '\'' + + '}'; + } +} -- Gitblit v1.9.3