*
lsh
2025-04-30 1bde682d9149b5b55488cfaa277ec1deacab4bee
src/main/java/com/zy/asrs/entity/param/CarryParam.java
@@ -10,6 +10,9 @@
    //入出库类型
    private Integer ioType;
    //优先级
    private Integer taskPriority;
    //容器编码
    private String barcode;
@@ -22,4 +25,20 @@
    //备注
    private String meno;
    public void updateIoTyoe(Integer ioTypeOld){
        switch (ioTypeOld){
            case 1:
                this.ioType = 2;
                break;
            case 2:
                this.ioType = 3;
                break;
            case 3:
                this.ioType = 1;
                break;
            default:
                this.ioType = 3;
        }
    }
}