| | |
| | | package com.zy.asrs.wms.asrs.entity.param; |
| | | |
| | | import lombok.Data; |
| | | |
| | | @Data |
| | | public class GeneratePakInParam { |
| | | |
| | | //任务类型 |
| | | private Long taskType; |
| | | |
| | | //托盘码 |
| | | private String barcode; |
| | | |
| | | //源站点 |
| | | private String originSite; |
| | | |
| | | //库位高度{LocTypeHeightType} |
| | | private Integer locTypeHeight; |
| | | |
| | | } |
| | | package com.zy.asrs.wms.asrs.entity.param;
|
| | |
|
| | | import lombok.Data;
|
| | | import lombok.experimental.Accessors;
|
| | |
|
| | | @Data
|
| | | @Accessors(chain = true)
|
| | | public class GeneratePakInParam {
|
| | |
|
| | | //任务类型
|
| | | private Long taskType;
|
| | |
|
| | | //托盘码
|
| | | private String barcode;
|
| | |
|
| | | //源站点
|
| | | private String originSite;
|
| | |
|
| | | //库位高度{LocTypeHeightType}
|
| | | private Integer locTypeHeight;
|
| | |
|
| | | }
|