whycrzg
2021-02-23 351b9a53cb9ecebdf8f79db0117f540d9c42c2a4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.fgkj.util;
 
import java.text.SimpleDateFormat;
 
/**
 * @Description : 时间工具类
 * @date 2020/10/15
 **/
public class DateUtil {
 
    public static SimpleDateFormat sdf=new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
    public static SimpleDateFormat sdfwithOut=new SimpleDateFormat("yyyy-MM-dd");
 
 
 
}