chen.lin
1 天以前 b003a49794f49a329e2702918ecfc8d14b371d0d
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
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.2 库存调整主动上报 - 请求体
 * 立库侧调用云仓通知:立库WMS 主动调整库存后向云仓WMS 上报。
 */
@Data
@Accessors(chain = true)
@ApiModel(value = "InventoryAdjustReportParam", description = "库存调整主动上报")
public class InventoryAdjustReportParam {
 
    @ApiModelProperty(value = "调整类型:1 入库;2 出库;3 移库", required = true)
    private Integer changeType;
 
    @ApiModelProperty(value = "仓库编码", required = true)
    private String wareHouseId;
 
    @ApiModelProperty("源库位号")
    private String sourceLocId;
 
    @ApiModelProperty("目标库位号(移库时有)")
    private String targetLocId;
 
    @ApiModelProperty(value = "物料编码", required = true)
    private String matNr;
 
    @ApiModelProperty(value = "调整数量", required = true)
    private String qty;
 
    @ApiModelProperty("托盘号")
    private String palletId;
}