1 Star 0 Fork 0

linxing/youye-core

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
json_time.go 1.18 KB
一键复制 编辑 原始数据 按行查看 历史
Mark 提交于 2024-03-18 10:52 . feat: app
package utils
import (
"database/sql/driver"
"fmt"
"time"
)
func NewJsonTimeNow() *JSONTime { return NewJsonTime(time.Now().Local()) }
func NewJsonTime(t time.Time) *JSONTime { return &JSONTime{Time: t} }
func NewJsonStr(t string) (*JSONTime, error) {
n := &JSONTime{}
err := n.UnmarshalJSON([]byte(t))
return n, err
}
// JSONTime format json time field by myself
type JSONTime struct {
time.Time
}
// MarshalJSON on JSONTime format Time field with %Y-%m-%d %H:%M:%S
func (t JSONTime) MarshalJSON() ([]byte, error) {
return []byte(fmt.Sprintf("\"%s\"", t.Time.Format(time.DateTime))), nil
}
func (t *JSONTime) UnmarshalJSON(data []byte) (err error) {
now, _ := time.ParseInLocation(time.DateTime, string(data), time.Local)
t.Time = now
return
}
// Value insert timestamp into mysql need this function.
func (t JSONTime) Value() (driver.Value, error) {
var zeroTime time.Time
if t.Time.UnixNano() == zeroTime.UnixNano() {
return nil, nil
}
return t.Time, nil
}
// Scan valueof time.Time
func (t *JSONTime) Scan(v interface{}) error {
value, ok := v.(time.Time)
if ok {
*t = JSONTime{Time: value}
return nil
}
return fmt.Errorf("can not convert %v to timestamp", v)
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/linxing_3/youye-core.git
git@gitee.com:linxing_3/youye-core.git
linxing_3
youye-core
youye-core
v0.0.1-2024031804

搜索帮助