lty
2025-05-19 4ef036d70c07b11114cc5d325b8efcaca7abc170
src/main/java/com/zy/core/model/protocol/StaProtocol.java
@@ -50,7 +50,7 @@
    private boolean pakMk = true;
    //托盘重量
    private Double weight = 0.0;
    private Integer weight = 0;
    // 入库暂存数
    private Short inQty;
@@ -121,7 +121,7 @@
        basDevp.setLocType2((short) 0);  // 宽窄类型{0:未知,1:窄库位,2:宽库位}
        basDevp.setLocType3((short) 0);  // 轻重类型{0:未知,1:轻库位,2:重库位}
        basDevp.setLocType1(high != low && low ? (short) 1 : (short) 2);
        basDevp.setInQty(inQty !=null ?(int)inQty : 0);
        basDevp.setInQty(weight !=null ?(int)weight : 0);
        return basDevp;
    }