对比新文件 |
| | |
| | | package org.jeecg.modules.wms.dto; |
| | | |
| | | import lombok.Getter; |
| | | import lombok.Setter; |
| | | |
| | | import javax.xml.bind.annotation.XmlAccessType; |
| | | import javax.xml.bind.annotation.XmlAccessorType; |
| | | import javax.xml.bind.annotation.XmlElement; |
| | | import javax.xml.bind.annotation.XmlType; |
| | | |
| | | @Getter |
| | | @Setter |
| | | @XmlAccessorType(XmlAccessType.FIELD) |
| | | @XmlType(name = "MESResponse", propOrder = { |
| | | "errorCode", |
| | | "errorDesc" |
| | | }, namespace = "http://xhj008.server.webservice.com/") |
| | | public class MESResponse { |
| | | @XmlElement(name = "ErrorCode", namespace = "http://xhj008.server.webservice.com/") |
| | | protected String errorCode; |
| | | @XmlElement(name = "ErrorDesc", namespace = "http://xhj008.server.webservice.com/") |
| | | protected String errorDesc; |
| | | } |