1 Star 1 Fork 2

menuiis/gkit

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
date_struct.go 2.09 KB
一键复制 编辑 原始数据 按行查看 历史
SongZhibin97 提交于 2021-12-28 19:46 . fix: linter优化
package timeout
import (
"database/sql/driver"
"fmt"
"strings"
"time"
)
type DateStruct struct {
time.Time
}
// UnmarshalText 通过 string 序列化成 Date
// Author [SliverHorn](https://github.com/SliverHorn)
func (m *DateStruct) UnmarshalText(value string) error {
dd, err := time.Parse(DateFormat, value)
if err != nil {
return err
}
m.Time = dd
return nil
}
// UnmarshalTextByLayout 通过 string 序列化成 Date by layout
// Author [SliverHorn](https://github.com/SliverHorn)
func (m *DateStruct) UnmarshalTextByLayout(layout, value string) error {
dd, err := time.Parse(layout, value)
if err != nil {
return err
}
m.Time = dd
return nil
}
// ToDateTime Date to Datetime
// Author [SliverHorn](https://github.com/SliverHorn)
func (m *DateStruct) ToDateTime() *DateTimeStruct {
return &DateTimeStruct{Time: m.Time}
}
// UnmarshalJSON 反序列化
// Author [SliverHorn](https://github.com/SliverHorn)
func (m *DateStruct) UnmarshalJSON(src []byte) error {
return m.UnmarshalText(strings.Replace(string(src), "\"", "", -1))
}
// MarshalJSON 序列化
// Author [SliverHorn](https://github.com/SliverHorn)
func (m *DateStruct) MarshalJSON() ([]byte, error) {
return []byte(`"` + m.String() + `"`), nil
}
// String 输出 DateTime 变量为字符串
// Author [SliverHorn](https://github.com/SliverHorn)
func (m *DateStruct) String() string {
return m.Format(DateFormat)
}
// Scan 扫描
// Author [SliverHorn](https://github.com/SliverHorn)
func (m *DateStruct) Scan(value interface{}) error {
switch v := value.(type) {
case []byte:
return m.UnmarshalText(string(v))
case string:
return m.UnmarshalText(v)
case time.Time:
m.Time = v
case nil:
*m = DateStruct{}
default:
return fmt.Errorf("cannot sql.Scan() DBDate from: %#v", v)
}
return nil
}
// Value 值
// Author [SliverHorn](https://github.com/SliverHorn)
func (m *DateStruct) Value() (driver.Value, error) {
return driver.Value(m.Format(DateFormat)), nil
}
// GormDataType gorm 定义数据库字段类型
// Author [SliverHorn](https://github.com/SliverHorn)
func (m *DateStruct) GormDataType() string {
return "DATE"
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/menciis/gkit.git
git@gitee.com:menciis/gkit.git
menciis
gkit
gkit
d3f65ed26d21

搜索帮助

0d507c66 1850385 C8b1a773 1850385