自动化立体仓库 - WMS系统
pang.jiabao
17 小时以前 973eed10d720c7dbd0020407c3b89fe1d385944f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package com.zy.asrs.entity.mes;
 
import com.alibaba.fastjson.annotation.JSONField;
import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.Data;
 
// MES接口返回结果
@Data
public class MesReturn {
 
    // 1:成功;2:失败
    @JsonProperty("Success")
    @JSONField(name = "Success")
    private String Success;
    // 失败消息
    @JsonProperty("Message")
    @JSONField(name = "Message")
    private String Message;
 
}