自动化立体仓库 - WMS系统
1
zhang
5 天以前 9afe7ca53c38f2aa1010c2ac2a778012d133160f
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
package com.zy.asrs.entity.param;
 
import com.baomidou.mybatisplus.annotations.TableField;
import com.zy.common.model.DetlDto;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.util.List;
 
/**
 * Created by vincent on 2022/4/8
 */
@Data
public class OpenOrderPakinParam {
 
    private String orderNo;
 
    private String orderType;
 
    private String orderTime;
 
//    private String itemId;
//
//    private String itemName;
//
//    private String allotItemId;
//
//    private String allotItemName;
 
    private List<DetlDto> orderDetails;
 
}