#
luxiaotao1123
2020-08-15 71333f8fbfc321bced0d7a3916e996de7fdac284
src/main/java/com/zy/asrs/domain/enums/CrnStatusType.java
@@ -34,4 +34,20 @@
    public void setDesc(String desc) {
        this.desc = desc;
    }}
    }
    public static CrnStatusType process(Integer ioType){
        if (ioType>100) {
            return TAKE;
        } else if (ioType < 100 && ioType!=3 && ioType!=6 && ioType!=11) {
            return PUT;
        } else if (ioType == 3) {
            return SITE_MOVE;
        } else if (ioType == 11) {
            return STOCK_MOVE;
        } else {
            return ERROR;
        }
    }
}