1
2
3
4
5
6
7
8
9
10
11
12
13
| package com.zy.asrs.entity.param;
|
| import lombok.Data;
|
| @Data
| public class BoxInParam {
| private String barcode; // 托盘码
| private Integer palletizingNo;// 码垛位编号
|
| private String batch; //尺寸
| private String memo; // 备注
| private Double anfme;
| }
|
|