| | |
| | | */ |
| | | @XStreamAsAttribute |
| | | private String id; |
| | | |
| | | /*** |
| | | * 主键 |
| | | * 规则码段编号 |
| | | */ |
| | | @XStreamAsAttribute |
| | | private String sectionCode; |
| | | /*** |
| | | * 序号 |
| | | */ |
| | | @XStreamAsAttribute |
| | | private String num; |
| | |
| | | */ |
| | | @XStreamAsAttribute |
| | | private String secType; |
| | | /*** |
| | | * 码段类型显示值 |
| | | */ |
| | | @XStreamAsAttribute |
| | | private String secTypeText; |
| | | |
| | | /** |
| | | * 所属编码规则 |
| | |
| | | /*** |
| | | * 码段码值 |
| | | */ |
| | | private List<CodeSectionValueVO> sectionValues; |
| | | private List<CodeSectionValueVO> sectionValue; |
| | | /** |
| | | * 日期格式 |
| | | */ |
| | |
| | | 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 + '\'' + |
| | | '}'; |
| | | } |