懒羊羊
2023-08-30 1ac2bc1590406d9babec036e154d8d08f34a6aa1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
package cn.stylefeng.guns.gen.core.util;
 
import cn.hutool.core.date.DateUtil;
import cn.hutool.core.util.StrUtil;
 
import java.math.BigDecimal;
import java.util.Date;
 
/**
 * 模板中用到的工具类
 *
 * @author fengshuonan
 * @date 2018-12-13-9:07 AM
 */
public class TemplateUtil {
 
    /**
     * 把一个数转化为int
     *
     * @author fengshuonan
     * @Date 2017/11/15 下午11:10
     */
    public static Integer toInt(Object val) {
        if (val instanceof Double) {
            BigDecimal bigDecimal = new BigDecimal((Double) val);
            return bigDecimal.intValue();
        } else {
            return Integer.valueOf(val.toString());
        }
 
    }
 
    /**
     * 当前时间
     *
     * @author stylefeng
     * @Date 2017/5/7 21:56
     */
    public static String currentTime() {
        return DateUtil.formatDateTime(new Date());
    }
 
    /**
     * 第一个首字母小写
     *
     * @author fengshuonan
     * @Date 2019/1/3 8:35 PM
     */
    public static String lowerFirst(String value) {
        return StrUtil.lowerFirst(value);
    }
 
    /**
     * 清理空白字符
     *
     * @author fengshuonan
     * @Date 2019/1/3 9:14 PM
     */
    public static String cleanWhite(String value) {
        return StrUtil.cleanBlank(value);
    }
 
}