新增 bpm 基于流程实例查询任务列表

This commit is contained in:
YunaiV
2022-01-16 13:27:09 +08:00
parent f9b6eef4d2
commit a4d31f9c45
7 changed files with 115 additions and 100 deletions

View File

@ -0,0 +1,16 @@
package cn.iocoder.yudao.framework.common.util.number;
import cn.hutool.core.util.StrUtil;
/**
* 数字的工具类,补全 {@link cn.hutool.core.util.NumberUtil} 的功能
*
* @author 芋道源码
*/
public class NumberUtils {
public static Long parseLong(String str) {
return StrUtil.isNotEmpty(str) ? Long.valueOf(str) : null;
}
}