wlzboy
1 天以前 10354e63eb3298beb9ebcc029dd9f48d8936a272
1
2
3
4
5
6
7
8
9
package com.ruoyi.common.utils;
 
import java.math.BigDecimal;
 
public class BigDecimalUtil {
    public static Boolean isZero(BigDecimal bigDecimal) {
        return bigDecimal.compareTo(BigDecimal.ZERO) == 0;
    }
}