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/CodeSectionValueVO.java | 94 +++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 94 insertions(+), 0 deletions(-) diff --git a/Source/UBCS/ubcs-service-api/ubcs-code-api/src/main/java/com/vci/ubcs/code/vo/webserviceModel/coderule/CodeSectionValueVO.java b/Source/UBCS/ubcs-service-api/ubcs-code-api/src/main/java/com/vci/ubcs/code/vo/webserviceModel/coderule/CodeSectionValueVO.java new file mode 100644 index 0000000..99a9b17 --- /dev/null +++ b/Source/UBCS/ubcs-service-api/ubcs-code-api/src/main/java/com/vci/ubcs/code/vo/webserviceModel/coderule/CodeSectionValueVO.java @@ -0,0 +1,94 @@ +package com.vci.ubcs.code.vo.webserviceModel.coderule; + +import com.thoughtworks.xstream.annotations.XStreamAlias; +import com.thoughtworks.xstream.annotations.XStreamAsAttribute; + +@XStreamAlias("sectionValue") +public class CodeSectionValueVO { + public CodeSectionValueVO() { + } + + public CodeSectionValueVO(String id, String num, String value,String name ,String description) { + this.id = id; + this.num = num; + this.value = value; + this.description = description; + } + + /*** + * 鐮佸�间富閿� + */ + @XStreamAsAttribute + private String id; + /*** + * 鐮佸�肩紪鍙� + */ + @XStreamAsAttribute + private String num; + + @XStreamAsAttribute + private String name; + + /*** + * 鐮佹鍊� + */ + @XStreamAsAttribute + private String value; + + /** + * 鎻忚堪 + */ + @XStreamAsAttribute + private String description; + + 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 getValue() { + return value; + } + + public void setValue(String value) { + this.value = value; + } + + public String getDescription() { + return description; + } + + public void setDescription(String description) { + this.description = description; + } + + public String getName() { + return name; + } + + public void setName(String name) { + this.name = name; + } + + @Override + public String toString() { + return "CodeSectionValueVO{" + + "id='" + id + '\'' + + ", num='" + num + '\'' + + ", name='" + name + '\'' + + ", value='" + value + '\'' + + ", description='" + description + '\'' + + '}'; + } +} -- Gitblit v1.9.3