新火炬后端单体项目初始化代码
cuilei
2 天以前 2c43632ad199905f759b1ba69cce2dcbc71c709f
src/main/java/org/jeecg/modules/wms/dto/MESResponse.java
@@ -1,23 +1,14 @@
package org.jeecg.modules.wms.dto;
import com.fasterxml.jackson.annotation.JsonProperty;
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 = "WSResponse",  propOrder = {
        "errorCode",
        "errorDesc"
})
public class MESResponse {
    @XmlElement(name = "ErrorCode")
    @JsonProperty("ErrorCode")
    protected String errorCode;
    @XmlElement(name = "ErrorDesc")
    @JsonProperty("ErrorDesc")
    protected String errorDesc;
}