package org.springblade.code.vo.universalInter.data;
|
|
import com.thoughtworks.xstream.annotations.XStreamAlias;
|
import com.thoughtworks.xstream.annotations.XStreamAsAttribute;
|
import com.thoughtworks.xstream.annotations.XStreamImplicit;
|
|
import java.util.List;
|
|
@XStreamAlias("object")
|
public class DataObjectVO {
|
@XStreamAsAttribute
|
private String code;
|
@XStreamAsAttribute
|
private String status;
|
@XStreamAsAttribute
|
private String library;
|
@XStreamAsAttribute
|
private String classCode;
|
@XStreamImplicit
|
private List<PropertyVO> pro;
|
|
public String getCode() {
|
return code;
|
}
|
|
public void setCode(String code) {
|
this.code = code;
|
}
|
|
public String getStatus() {
|
return status;
|
}
|
|
public void setStatus(String status) {
|
this.status = status;
|
}
|
|
public String getLibrary() {
|
return library;
|
}
|
|
public void setLibrary(String library) {
|
this.library = library;
|
}
|
|
public String getClassCode() {
|
return classCode;
|
}
|
|
public void setClassCode(String classCode) {
|
this.classCode = classCode;
|
}
|
|
public List<PropertyVO> getPro() {
|
return pro;
|
}
|
|
public void setPro(List<PropertyVO> pro) {
|
this.pro = pro;
|
}
|
|
@Override
|
public String toString() {
|
return "DataObjectVO{" +
|
"code='" + code + '\'' +
|
", status='" + status + '\'' +
|
", library='" + library + '\'' +
|
", classCode='" + classCode + '\'' +
|
", pro=" + pro +
|
'}';
|
}
|
}
|