Browse Source

绩效考核

lihui007 4 years ago
parent
commit
d3d1d73b4d
1 changed files with 15 additions and 0 deletions
  1. 15 0
      common/src/main/java/com/huaxu/util/IntegerUtil.java

+ 15 - 0
common/src/main/java/com/huaxu/util/IntegerUtil.java

@@ -0,0 +1,15 @@
+package com.huaxu.util;
+
+/**
+ * @ClassName IntegerUtil
+ * @Description: TODO
+ * @Author lihui
+ * @Date 2021/5/8
+ * @Version V1.0
+ **/
+public class IntegerUtil {
+
+    public static boolean isNullOrZero(Integer integer){
+         return integer == null || integer == 0;
+    }
+}