fwq
2024-09-27 9436a044624dfc8ab027a5345d9814d29a0f74f3
提交 | 用户 | age
826b66 1 package com.hx.auto.util;
C 2
3 public class CommonTool {
4
5     /**
6      * 判断是否为空
7      */
8     public static boolean checkNotNull(Object o) {
9         boolean b = false;
10         if (o != null && !"".equals(o)&&!"undefind".equals(o)) {
11             b = true;
12         }
13         return b;
14     }
15
16     
17 }