自动化立体仓库 - WMS系统
野心家
2025-06-05 c3e47e5e70a9055b7d25c118eb1f7ec3c869e953
src/main/java/com/zy/common/web/param/SearchLocParam.java
@@ -1,5 +1,7 @@
package com.zy.common.web.param;
import com.fasterxml.jackson.annotation.JsonFormat;
import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.Data;
/**
@@ -8,13 +10,43 @@
@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:中库位, 3:高库位 )
    private Short locType1;
    /**
     * 货物高度
     * 1(低),2(中),
     * 3(高) 三个等
     * 级,默认 0
     */
    private Integer cargoHeight;
    /**
     * 货物重量
     * 精确度根据设备
     * 定,最高 0.1KG,
     * 默认 0.0
     */
    private double cargoWeight;
//    // 库位规格( 0:未知, 1:低库位, 2:高库位)
//    private Short locType1;
}