12345678910111213141516171819202122232425262728293031323334353637 |
- package com.sinosoft.lz.system.util;
- public class Node2{
- /**
- * 节点内容
- */
- private String text;
- /**
- * 节点内容
- */
- private String content;
- /**
- *
- */
- public Node2() {
- // TODO Auto-generated constructor stub
- }
- public String getText() {
- return text;
- }
- public void setText(String text) {
- this.text = text;
- }
- public String getContent() {
- return content;
- }
- public void setContent(String content) {
- this.content = content;
- }
- }
|