| | |
| | | package com.vci.ubcs.code.vo.webserviceModel.data; |
| | | |
| | | import com.thoughtworks.xstream.annotations.XStreamAlias; |
| | | import com.thoughtworks.xstream.annotations.XStreamAsAttribute; |
| | | import com.thoughtworks.xstream.annotations.XStreamImplicit; |
| | | |
| | | import java.util.List; |
| | | |
| | | @XStreamAlias("condtion") |
| | | public class CondtionVO { |
| | | @XStreamAsAttribute |
| | | private String classCode; |
| | | @XStreamAsAttribute |
| | | private String library; |
| | | @XStreamAsAttribute |
| | | private String queryFileds; |
| | | @XStreamImplicit |
| | | private List<PropertyVO> pro; |
| | | 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 getQueryFileds() { |
| | | return queryFileds; |
| | | } |
| | | |
| | | public void setQueryFileds(String queryFileds) { |
| | | this.queryFileds = queryFileds; |
| | | } |
| | | |
| | | public List<PropertyVO> getPro() { |
| | | return pro; |
| | | } |
| | | |
| | | public void setPro(List<PropertyVO> pro) { |
| | | this.pro = pro; |
| | | } |
| | | |
| | | @Override |
| | | public String toString() { |
| | | return "CondtionVO{" + |
| | | "classCode='" + classCode + '\'' + |
| | | ", library='" + library + '\'' + |
| | | ", queryFileds='" + queryFileds + '\'' + |
| | | ", pro=" + pro + |
| | | '}'; |
| | | } |
| | | } |