package com.vci.ubcs.code.vo.webserviceModel.apply;
|
|
import com.thoughtworks.xstream.annotations.XStreamAlias;
|
import com.thoughtworks.xstream.annotations.XStreamImplicit;
|
|
import java.util.List;
|
|
@XStreamAlias("objects")
|
public class ApplyDatasVO {
|
@XStreamImplicit
|
private List<ApplyDataVO> object;
|
|
public List<ApplyDataVO> getObject() {
|
return object;
|
}
|
|
public void setObject(List<ApplyDataVO> object) {
|
this.object = object;
|
}
|
|
@Override
|
public String toString() {
|
return "ApplyDatasVO{" +
|
"object=" + object +
|
'}';
|
}
|
}
|