修复低级bug #2906

pull/2942/head
zhangdaiscott 2021-08-14 19:39:42 +08:00
parent ab529aaf6c
commit 234022d905
1 changed files with 1 additions and 1 deletions

View File

@ -26,7 +26,7 @@ public class YouBianCodeUtil {
*/ */
public static synchronized String getNextYouBianCode(String code) { public static synchronized String getNextYouBianCode(String code) {
String newcode = ""; String newcode = "";
if (code == null || code =="") { if (oConvertUtils.isEmpty(code)) {
String zimu = "A"; String zimu = "A";
String num = getStrNum(1); String num = getStrNum(1);
newcode = zimu + num; newcode = zimu + num;