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