新火炬后端单体项目初始化代码
cuilei
3 天以前 cb0cbf01863bf3d22c06410a37d280719a5c92c3
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package org.jeecg.modules.wms.dto;
 
import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.Getter;
import lombok.Setter;
 
@Getter
@Setter
public class MESResponse {
    @JsonProperty("ErrorCode")
    protected String errorCode;
    @JsonProperty("ErrorDesc")
    protected String errorDesc;
}