chen.lin
2 天以前 9140aee230de0ef41de9682a9353fbd372e2bcaa
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
package com.vincent.rsf.server.api.controller.erp.params;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import lombok.experimental.Accessors;
 
/**
 * 对接协议 9.1 入/出库结果上报 - 请求体(立库WMS 直接请求 云仓WMS)
 */
@Data
@Accessors(chain = true)
@ApiModel(value = "InOutResultReportParam", description = "入/出库结果上报")
public class InOutResultReportParam {
 
    @ApiModelProperty(value = "订单编码", required = true)
    private String orderNo;
 
    @ApiModelProperty("计划跟踪号")
    private String planNo;
 
    @ApiModelProperty("行内码")
    private String lineId;
 
    @ApiModelProperty(value = "仓库编码", required = true)
    private String wareHouseId;
 
    @ApiModelProperty(value = "库位号", required = true)
    private String locId;
 
    @ApiModelProperty(value = "物料编码", required = true)
    private String matNr;
 
    @ApiModelProperty(value = "本次出/入数量", required = true)
    private String qty;
 
    @ApiModelProperty("托盘号")
    private String palletId;
 
    @ApiModelProperty("批次")
    private String batch;
}