chenjiahe
5 天以前 826b66207dafbce24f441cb83fed1b241a6fba27
提交 | 用户 | 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 }