You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
373 B
15 lines
373 B
package com.guozhi.bloodanalysis.utils;
|
|
|
|
import org.springframework.stereotype.Component;
|
|
|
|
import java.text.DateFormat;
|
|
import java.text.SimpleDateFormat;
|
|
import java.util.Date;
|
|
|
|
@Component
|
|
public class DateUtils {
|
|
public String getFormateByDate(Date date){
|
|
DateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
|
|
return sdf.format(date);
|
|
}
|
|
}
|
|
|