Source/UBCS/ubcs-service/ubcs-code/src/main/java/com/vci/ubcs/code/algorithm/CustomRomanSerialAlgorithmExample.java
@@ -116,7 +116,12 @@
                   int newYear=0;
                     int month=0;
                    if(yearMoths.length>2){
                       newYear=Integer.parseInt(yearMoths[0]);
                       String year=yearMoths[0];
                       if(year.length()>String.valueOf(yearSecValue).length()){//有时候发布时间的年长度大于码段的长度,则需要截取后2位
                          newYear= Integer.parseInt(year.substring(2));
                       }else {
                          newYear=Integer.parseInt(year);
                       }
                       month=Integer.parseInt(yearMoths[1]);
                    }
                    if(newYear>yearSecValue&&month>1){