chenjiahe
5 天以前 826b66207dafbce24f441cb83fed1b241a6fba27
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package com.hx.auto.util;
 
public class CommonTool {
 
    /**
     * 判断是否为空
     */
    public static boolean checkNotNull(Object o) {
        boolean b = false;
        if (o != null && !"".equals(o)&&!"undefind".equals(o)) {
            b = true;
        }
        return b;
    }
 
    
}