支付回调不加书bug

This commit is contained in:
wangjinlei
2023-11-03 15:09:30 +08:00
parent b89566bdf2
commit 1c5f8c7f9c
3 changed files with 23 additions and 1 deletions

View File

@@ -0,0 +1,14 @@
package com.peanut.common.utils;
import com.baomidou.mybatisplus.core.toolkit.StringUtils;
public class MyUtil {
public static boolean notEmpty(Object o){
if(o!=null&& StringUtils.isNotBlank(o.toString())){
return true;
}else {
return false;
}
}
}