给单据增加查询条件
This commit is contained in:
@@ -93,6 +93,14 @@ public class StringUtil {
|
||||
}
|
||||
}
|
||||
|
||||
public static Long parseStrLong(String str) {
|
||||
if (StringUtil.isNotEmpty(str)) {
|
||||
return Long.parseLong(str);
|
||||
} else {
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
public static List<UUID> listToUUID(List<String> listStrs) {
|
||||
if (listStrs != null && listStrs.size() > 0) {
|
||||
List<UUID> uuidList = new ArrayList<UUID>();
|
||||
|
||||
Reference in New Issue
Block a user