自动化立体仓库 - WMS系统
#1
dubin
2025-12-17 96c5a749f14c3dea75ff774e5eed2921ba0f2555
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package com.zy.common.web.param;
 
import com.fasterxml.jackson.annotation.JsonProperty;
 
public class ErrorMsg {
    /**
     * 仓库编码
     */
    @JsonProperty(value = "warehouse")
    private String warehouse;
 
    /**
     * 库口编码
     */
    @JsonProperty(value = "portCode")
    private String portCode;
 
    /**
     * 异常信息
     *
     */
    @JsonProperty(value = "errorMsg")
    private String errorMsg;
}