*
lsh
23 小时以前 712dcbef9f4ae3f81e751bf8651d2e241f3f792c
src/main/java/com/zy/asrs/entity/param/WMSAndAGVInterfaceParam.java
@@ -13,6 +13,9 @@
    //入出库类型
    private int ioType;
    //托盘码
    private String barcode;
    //private String taskNo;              //任务号
    private String warehouseId;         //仓库标识
@@ -50,5 +53,31 @@
    private String requestType;         //请求类型:         1=取货;2=放货
    private String wharfCode;           //码头编号
//
//    public void updateTaskStatus(Integer TaskStatusOld){
//        switch (TaskStatusOld){
//            case 1:
//                this.taskStatus = 1;
//                break;
//            case 2:
//                this.taskStatus = 3;
//            default:
//                this.ioType = 0;
//        }
//    }
    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;
        }
    }
}