1 Star 0 Fork 0

fkil555/gin-extend

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
timehelper.go 668 Bytes
一键复制 编辑 原始数据 按行查看 历史
fkil555 提交于 2023-10-26 09:57 . up
package timehelper
import (
"fmt"
"gitee.com/fkil555/gin-extend/constants"
"time"
)
// datetime类型
type GDatetime time.Time
func (t GDatetime) MarshalJSON() ([]byte, error) {
var stamp = fmt.Sprintf("\"%s\"", time.Time(t).Format(constants.DATETIME_FORMAT))
return []byte(stamp), nil
}
func (t GDatetime) Time() (time.Time) {
return time.Time(t)
}
func (t GDatetime) Format() (string) {
return time.Time(t).Format(constants.DATETIME_FORMAT)
}
func (t *GDatetime) UnmarshalText(data []byte) (err error) {
var newT time.Time
if newT, err = time.Parse(constants.DATETIME_FORMAT, string(data)); err != nil {
return
}
*t = GDatetime(newT)
return
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/fkil555/gin-extend.git
git@gitee.com:fkil555/gin-extend.git
fkil555
gin-extend
gin-extend
v0.0.4

搜索帮助