| | |
| | | package com.zy.common.web.param; |
| | | |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import com.fasterxml.jackson.annotation.JsonProperty; |
| | | import lombok.Data; |
| | | |
| | | /** |
| | |
| | | @Data |
| | | public class SearchLocParam { |
| | | |
| | | private Integer ioType; |
| | | /** |
| | | * 申请时间 |
| | | */ |
| | | @JsonProperty(value = "applyTime") |
| | | private String applyTime; |
| | | |
| | | private Integer sourceStaNo; |
| | | /** |
| | | * 入库口编号 |
| | | */ |
| | | @JsonProperty(value = "fromPort") |
| | | private String fromPort; |
| | | |
| | | private String barcode; |
| | | /** |
| | | * 托盘码 |
| | | */ |
| | | @JsonProperty(value = "barCode") |
| | | private String barCode; |
| | | |
| | | // 库位规格( 0:未知, 1:低库位, 2:高库位) |
| | | private Short locType1; |
| | | /** |
| | | * 货物高度 |
| | | * 1(低),2(中), |
| | | * 3(高) 三个等 |
| | | * 级,默认 0 |
| | | */ |
| | | private Integer cargoHeight; |
| | | |
| | | /** |
| | | * 货物重量 |
| | | * 精确度根据设备 |
| | | * 定,最高 0.1KG, |
| | | * 默认 0.0 |
| | | */ |
| | | private double cargoWeight; |
| | | |
| | | |
| | | |
| | | // // 库位规格( 0:未知, 1:低库位, 2:高库位) |
| | | // private Short locType1; |
| | | |
| | | } |