package com.vci.ubcs.code.vo.webserviceModel.applybz;
|
|
import com.thoughtworks.xstream.annotations.XStreamAlias;
|
import com.thoughtworks.xstream.annotations.XStreamAsAttribute;
|
import com.vci.ubcs.code.vo.webserviceModel.apply.ApplyDatasVO;
|
|
/**
|
* 分类信息
|
*/
|
@XStreamAlias("classify")
|
public class ClassfyBZVO {
|
/**
|
* 分类代号
|
*/
|
@XStreamAsAttribute
|
private String classCode;
|
/**
|
* 库代号
|
*/
|
@XStreamAsAttribute
|
private String library;
|
/**
|
* 类路径
|
*/
|
@XStreamAsAttribute
|
private String fullclsfNamePath;
|
/**
|
* 数据集合
|
*/
|
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 ApplyDatasVO getObjects() {
|
return objects;
|
}
|
|
public void setObjects(ApplyDatasVO objects) {
|
this.objects = objects;
|
}
|
|
@Override
|
public String toString() {
|
return "ClassfyBZVO{" +
|
"classCode='" + classCode + '\'' +
|
", library='" + library + '\'' +
|
", fullclsfNamePath='" + fullclsfNamePath + '\'' +
|
", objects=" + objects +
|
'}';
|
}
|
}
|