1 Star 0 Fork 0

ichub / go-factroy2024

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
LocalTimeInt.go 1.13 KB
一键复制 编辑 原始数据 按行查看 历史
leijmdas 提交于 2024-01-30 12:56 . add
package model
import (
"database/sql/driver"
"fmt"
"strconv"
"time"
)
type LocalTimeInt struct {
time.Time
}
func (t LocalTimeInt) MarshalJSON() ([]byte, error) {
//格式化秒
seconds := t.Unix()
return []byte(strconv.FormatInt(seconds, 10)), nil
//return []byte(fmt.Sprintf("%d",seconds)), nil
}
func (t *LocalTimeInt) UnmarshalJSON(data []byte) error {
if string(data) == "null" {
t.Time = time.Unix(0, 0)
return nil
}
i64, err := strconv.ParseInt(string(data), 10, 64)
t.Time = time.Unix(i64, 0)
return err
}
func (t LocalTimeInt) Value() (driver.Value, error) {
var zeroTime time.Time
if t.Time.UnixNano() == zeroTime.UnixNano() {
return nil, nil
}
return t.Time, nil
}
func (t *LocalTimeInt) Scan(v interface{}) error {
value, ok := v.(time.Time)
if ok {
*t = LocalTimeInt{Time: value}
return nil
}
return fmt.Errorf("can not convert %v to timestamp", v)
}
func (t *LocalTimeInt) FormatDatetime() string {
return t.Time.Format("2006-01-02 15:04:05")
}
func (t *LocalTimeInt) FormatDate() string {
return t.Time.Format("2006-01-02")
}
func (t *LocalTimeInt) Zero() LocalTimeInt {
return LocalTimeInt{}
}
Go
1
https://gitee.com/ichub/go-factroy2024.git
git@gitee.com:ichub/go-factroy2024.git
ichub
go-factroy2024
go-factroy2024
v1.2.0

搜索帮助