支付回调不加书bug
This commit is contained in:
14
src/main/java/com/peanut/common/utils/MyUtil.java
Normal file
14
src/main/java/com/peanut/common/utils/MyUtil.java
Normal 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;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user