1 Star 0 Fork 0

ichub / goconfig

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

搜索帮助