he2802 1 жил өмнө
parent
commit
df7380d4ee

+ 1 - 1
zhongzheng-system/src/main/java/com/zhongzheng/modules/base/service/impl/CertificateTpServiceImpl.java

@@ -617,7 +617,7 @@ public class CertificateTpServiceImpl extends ServiceImpl<CertificateTpMapper, C
         Long id = iUserCertificateService.selectMaxId();
         Long id = iUserCertificateService.selectMaxId();
         String nowId = Long.toString(id);
         String nowId = Long.toString(id);
         String result = "";
         String result = "";
-        result = String.format("%0" + 4 + "d", Integer.parseInt(nowId) + 1);
+        result = String.format("%0" + 5 + "d", Integer.parseInt(nowId) + 1);
         return result;
         return result;
     }
     }