pipIrr-platform/pipIrr-common/src/main/java/com/dy/common/webListener/GenerateIdSetSuffixListener.java
@@ -28,7 +28,6 @@
    /**
     * 解析系统配置
     * @return
     */
    private void init(ServletContext con){
        try {
@@ -39,7 +38,7 @@
                if(!NumUtil.isPlusIntNumber(idSuffix)){
                    throw new Exception("配置ID后缀格式不正确") ;
                }else{
                    IDLongGenerator.setSuffix(Integer.valueOf(idSuffix));
                    IDLongGenerator.setSuffix(Integer.parseInt(idSuffix));
                }
            }
        } catch (Exception e) {