123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146 |
- package com.sinosoft.nwyj.integration.cxf.dataService;
- import javax.xml.bind.annotation.XmlAccessType;
- import javax.xml.bind.annotation.XmlAccessorType;
- import javax.xml.bind.annotation.XmlElement;
- import javax.xml.bind.annotation.XmlType;
- /**
- * <p>resp complex type的 Java 类
- *
- * <p>以下模式片段指定包含在此类中的预期内容。
- *
- * <pre>
- * <complexType name="resp">
- * <complexContent>
- * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- * <sequence>
- * <element name="pageInfo" type="{http://dc.soa.csg.cn}respage"/>
- * <element name="replyCode" type="{http://www.w3.org/2001/XMLSchema}string"/>
- * <element name="replyDesc" type="{http://www.w3.org/2001/XMLSchema}string"/>
- * <element name="result" type="{http://dc.soa.csg.cn}result"/>
- * </sequence>
- * </restriction>
- * </complexContent>
- * </complexType>
- * </pre>
- *
- *
- */
- @XmlAccessorType(XmlAccessType.FIELD)
- @XmlType(name = "resp", propOrder = {
- "pageInfo",
- "replyCode",
- "replyDesc",
- "result"
- })
- public class Resp {
- @XmlElement(required = true, nillable = true)
- protected Respage pageInfo;//返回页信息
- @XmlElement(required = true, nillable = true)
- protected String replyCode;//返回编码
- @XmlElement(required = true, nillable = true)
- protected String replyDesc;//返回信息
- @XmlElement(required = true, nillable = true)
- protected Result result;//查询结果
- /**
- * 获取pageInfo属性的值。
- *
- * @return
- * possible object is
- * {@link Respage }
- *
- */
- public Respage getPageInfo() {
- return pageInfo;
- }
- /**
- * 设置pageInfo属性的值。
- *
- * @param value
- * allowed object is
- * {@link Respage }
- *
- */
- public void setPageInfo(Respage value) {
- this.pageInfo = value;
- }
- /**
- * 获取replyCode属性的值。
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getReplyCode() {
- return replyCode;
- }
- /**
- * 设置replyCode属性的值。
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setReplyCode(String value) {
- this.replyCode = value;
- }
- /**
- * 获取replyDesc属性的值。
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getReplyDesc() {
- return replyDesc;
- }
- /**
- * 设置replyDesc属性的值。
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setReplyDesc(String value) {
- this.replyDesc = value;
- }
- /**
- * 获取result属性的值。
- *
- * @return
- * possible object is
- * {@link Result }
- *
- */
- public Result getResult() {
- return result;
- }
- /**
- * 设置result属性的值。
- *
- * @param value
- * allowed object is
- * {@link Result }
- *
- */
- public void setResult(Result value) {
- this.result = value;
- }
- }
|