| | |
| | | package com.vci.ubcs.code.vo.webserviceModel.data; |
| | | |
| | | import com.thoughtworks.xstream.annotations.XStreamAlias; |
| | | import com.thoughtworks.xstream.annotations.XStreamAsAttribute; |
| | | import com.vci.ubcs.code.vo.webserviceModel.apply.UserVO; |
| | | |
| | | @XStreamAlias("condtions") |
| | | public class CondtionsVO { |
| | | @XStreamAsAttribute |
| | | private String systemId; |
| | | |
| | | private UserVO user; |
| | | |
| | | private CondtionVO condtion; |
| | | |
| | | 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 CondtionVO getCondtion() { |
| | | return condtion; |
| | | } |
| | | |
| | | public void setCondtion(CondtionVO condtion) { |
| | | this.condtion = condtion; |
| | | } |
| | | |
| | | @Override |
| | | public String toString() { |
| | | return "CondtionsVO{" + |
| | | "systemId='" + systemId + '\'' + |
| | | ", user=" + user + |
| | | ", condtion=" + condtion + |
| | | '}'; |
| | | } |
| | | } |