util/time.go

28 lines
546 B
Go
Raw Normal View History

2022-05-14 13:45:51 +08:00
// Package util ...
//
// Description : 时间相关操作
//
// Author : go_developer@163.com<白茶清欢>
//
// Date : 2021-10-07 1:33 上午
package util
import "time"
2022-05-14 15:26:13 +08:00
// ownTime ...
//
// Author : go_developer@163.com<白茶清欢>
//
// Date : 15:24 2022/5/14
type ownTime struct {
}
2022-05-14 13:45:51 +08:00
// GetCurrentFormatTime 获取当前时间的格式化时间(秒)
//
// Author : go_developer@163.com<白茶清欢>
//
// Date : 1:34 上午 2021/10/7
2022-06-26 16:09:15 +08:00
func (ot *ownTime) GetCurrentFormatTime() string {
2022-05-14 13:45:51 +08:00
return time.Now().Format("2006-01-02 15:04:05")
}