|
@@ -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;
|
|
}
|
|
}
|
|
|
|
|