| | |
| | | package com.vci.ubcs.code.vo.webserviceModel.classify; |
| | | |
| | | import com.thoughtworks.xstream.annotations.XStreamAlias; |
| | | import com.thoughtworks.xstream.annotations.XStreamAsAttribute; |
| | | |
| | | @XStreamAlias("classify") |
| | | public class ClassifyVO { |
| | | /** |
| | | * 分类id |
| | | */ |
| | | @XStreamAsAttribute |
| | | private String id; |
| | | /*** |
| | | * 分类名称 |
| | | */ |
| | | @XStreamAsAttribute |
| | | private String name; |
| | | /*** |
| | | * 父节点id |
| | | */ |
| | | @XStreamAsAttribute |
| | | private String pid; |
| | | /*** |
| | | * 分类代号 |
| | | */ |
| | | @XStreamAsAttribute |
| | | private String classCode; |
| | | /*** |
| | | * 描述 |
| | | */ |
| | | @XStreamAsAttribute |
| | | private String description; |
| | | /*** |
| | | * 分类链接路径 |
| | | */ |
| | | @XStreamAsAttribute |
| | | private String fullPathName; |
| | | /*** |
| | | * 分类状态 |
| | | */ |
| | | @XStreamAsAttribute |
| | | private String lcStatus; |
| | | |
| | | public String getId() { |
| | | return id; |
| | | } |
| | | |
| | | public void setId(String id) { |
| | | this.id = id; |
| | | } |
| | | |
| | | public String getName() { |
| | | return name; |
| | | } |
| | | |
| | | public void setName(String name) { |
| | | this.name = name; |
| | | } |
| | | |
| | | public String getPid() { |
| | | return pid; |
| | | } |
| | | |
| | | public void setPid(String pid) { |
| | | this.pid = pid; |
| | | } |
| | | |
| | | public String getClassCode() { |
| | | return classCode; |
| | | } |
| | | |
| | | public void setClassCode(String classCode) { |
| | | this.classCode = classCode; |
| | | } |
| | | |
| | | public String getDescription() { |
| | | return description; |
| | | } |
| | | |
| | | public void setDescription(String description) { |
| | | this.description = description; |
| | | } |
| | | |
| | | public String getFullPathName() { |
| | | return fullPathName; |
| | | } |
| | | |
| | | public void setFullPathName(String fullPathName) { |
| | | this.fullPathName = fullPathName; |
| | | } |
| | | |
| | | public String getLcStatus() { |
| | | return lcStatus; |
| | | } |
| | | |
| | | public void setLcStatus(String lcStatus) { |
| | | this.lcStatus = lcStatus; |
| | | } |
| | | |
| | | @Override |
| | | public String toString() { |
| | | return "ClassifyVO{" + |
| | | "id='" + id + '\'' + |
| | | ", name='" + name + '\'' + |
| | | ", pid='" + pid + '\'' + |
| | | ", classCode='" + classCode + '\'' + |
| | | ", description='" + description + '\'' + |
| | | ", fullPathName='" + fullPathName + '\'' + |
| | | ", lcStatus='" + lcStatus + '\'' + |
| | | '}'; |
| | | } |
| | | } |