自动化立体仓库 - WMS系统
whycq
2024-11-25 bcb19e8c93c3cabf0d8eb3ee34ed819b3c5a10ef
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package com.zy.asrs.entity.param;
 
import lombok.Data;
 
import java.util.List;
 
@Data
public class ModifyPakoutParam {
    //货架码
    String barcode;
    //货架取出的数量
    List<CA> params;
 
    @Data
    public static class CA{
        String containerCode;
        double anfme;
    }
}