#
Junjie
2024-11-28 a19133219811f9286fa71a0fb8c1deb628cf74a3
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package com.zy.asrs.wms.asrs.entity.param;
 
import com.zy.asrs.wms.asrs.entity.dto.OutDetlDto;
import lombok.Data;
 
import java.io.Serializable;
import java.util.List;
 
@Data
public class OutParam implements Serializable {
 
    /**
     * 库位明细
     */
    private List<OutDetlDto> detls;
 
    /**
     * 作业口
     */
    private String operationPort;
 
}