fonchain-artistinfo/cmd/model/model.go

14 lines
371 B
Go
Raw Normal View History

2023-02-15 01:10:11 +00:00
package model
import (
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 {
ID int64 `gorm:"primarykey;" json:"id" form:"id"`
2023-02-17 03:33:56 +00:00
CreatedAt time.Time `gorm:"column:created_at"`
UpdatedAt time.Time `gorm:"column:updated_at"`
2023-02-22 03:03:20 +00:00
DeletedAt soft_delete.DeletedAt `gorm:"column:deleted_at;type:bigint" json:"deletedAt"`
2023-02-15 01:10:11 +00:00
}