| | |
| | | package com.vci.ubcs.code.vo.webserviceModel.apply; |
| | | |
| | | import com.thoughtworks.xstream.annotations.XStreamAlias; |
| | | import com.thoughtworks.xstream.annotations.XStreamAsAttribute; |
| | | |
| | | /** |
| | | *数据信息 |
| | | */ |
| | | @XStreamAlias("data") |
| | | public class RootDataVO { |
| | | /*** |
| | | * 集成系统标识 |
| | | */ |
| | | @XStreamAsAttribute |
| | | private String systemId; |
| | | /** |
| | | * 操作用户信息 |
| | | */ |
| | | private UserVO user; |
| | | /*** |
| | | * 数据信息 |
| | | */ |
| | | private ClassfysVO classifys; |
| | | |
| | | |
| | | public String getSystemId() { |
| | | return systemId; |
| | | } |
| | | |
| | | public void setSystemId(String systemId) { |
| | | this.systemId = systemId; |
| | | } |
| | | |
| | | public UserVO getUser() { |
| | | return user; |
| | | } |
| | | |
| | | public void setUser(UserVO user) { |
| | | this.user = user; |
| | | } |
| | | |
| | | public ClassfysVO getClassifys() { |
| | | return classifys; |
| | | } |
| | | |
| | | public void setClassifys(ClassfysVO classifys) { |
| | | this.classifys = classifys; |
| | | } |
| | | |
| | | @Override |
| | | public String toString() { |
| | | return "InterParameterVO{" + |
| | | "systemId='" + systemId + '\'' + |
| | | ", user=" + user + |
| | | ", classifys=" + classifys + |
| | | '}'; |
| | | } |
| | | } |