2023-02-14 02:47:08 +08:00
|
|
|
|
namespace Application.Common.Helpers;
|
|
|
|
|
|
|
|
|
|
public static class TimeHelper
|
|
|
|
|
{
|
|
|
|
|
public static string CurrentTimeToString()
|
|
|
|
|
{
|
2023-02-16 15:26:13 +08:00
|
|
|
|
return DateTime.Now.ToString("yyyy/MM/dd hh:mm:ss");
|
2023-02-14 02:47:08 +08:00
|
|
|
|
}
|
2023-02-15 02:14:19 +08:00
|
|
|
|
|
|
|
|
|
public static string DateToString(DateTime time)
|
|
|
|
|
{
|
2023-02-16 15:26:13 +08:00
|
|
|
|
return time.ToString("yyyy/MM/dd hh:mm:ss");
|
2023-02-15 02:14:19 +08:00
|
|
|
|
}
|
2023-02-14 02:47:08 +08:00
|
|
|
|
}
|