自动化立体仓库 - WMS系统
李天宇
2024-11-09 4e703e5c6117f9502043cf659dbc03e8da9254c4
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.param;
 
import lombok.Data;
 
@Data
public class PickMatParam {
 
    private String matnr;
 
    private String batch;
 
    private String orderNo;
 
    private Long orderId;
 
    private Double count;
 
    private Double useCount;
 
}