fonchain-artistinfo/cmd/model/model.go

16 lines
400 B
Go
Raw Normal View History

2023-02-15 01:10:11 +00:00
package model
import (
"gorm.io/gorm"
2023-02-17 03:33:56 +00:00
"gorm.io/plugin/soft_delete"
2023-02-15 01:10:11 +00:00
"time"
)
type Model struct {
2023-02-17 03:33:56 +00:00
gorm.Model
ID uint64 `gorm:"primarykey;" json:"id" form:"id"`
CreatedAt time.Time `gorm:"column:created_at"`
UpdatedAt time.Time `gorm:"column:updated_at"`
DeletedAt soft_delete.DeletedAt `gorm:"column:deleted_at;type:int(11)" json:"deletedAt"`
2023-02-15 01:10:11 +00:00
}