¶Ô±ÈÐÂÎļþ |
| | |
| | | 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 + '\'' + |
| | | '}'; |
| | | } |
| | | } |