package org.springblade.code.vo.universalInter.apply; import com.thoughtworks.xstream.annotations.XStreamAlias; import com.thoughtworks.xstream.annotations.XStreamAsAttribute; /** * 分类信息 */ @XStreamAlias("classify") public class ClassfyVO { /** * 分类代号 */ @XStreamAsAttribute private String classCode; /** * 库代号 */ @XStreamAsAttribute private String library; /** * 类路径 */ @XStreamAsAttribute private String fullclsfNamePath; /** * 码段信息 */ private SectionsVO sections; private ApplyDatasVO objects; public String getClassCode() { return classCode; } public void setClassCode(String classCode) { this.classCode = classCode; } public String getLibrary() { return library; } public void setLibrary(String library) { this.library = library; } public String getFullclsfNamePath() { return fullclsfNamePath; } public void setFullclsfNamePath(String fullclsfNamePath) { this.fullclsfNamePath = fullclsfNamePath; } public SectionsVO getSections() { return sections; } public void setSections(SectionsVO sections) { this.sections = sections; } public ApplyDatasVO getObjects() { return objects; } public void setObjects(ApplyDatasVO objects) { this.objects = objects; } @Override public String toString() { return "ClassVO{" + "classCode='" + classCode + '\'' + ", library='" + library + '\'' + ", fullclsfNamePath='" + fullclsfNamePath + '\'' + ", sections=" + sections + ", objects=" + objects + '}'; } }