| | |
| | | package org.jeecg.modules.wms.dto; |
| | | |
| | | public class WSResponse { |
| | | private String ErrorCode; |
| | | private String ErrorDesc; |
| | | 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 java.io.Serializable; |
| | | |
| | | @Getter |
| | | @Setter |
| | | @XmlAccessorType(XmlAccessType.FIELD) |
| | | public class WSResponse implements Serializable { |
| | | @XmlElement(name = "ErrorCode") |
| | | private String errorCode; |
| | | @XmlElement(name = "ErrorDesc") |
| | | private String errorDesc; |
| | | } |