zhangqian
2023-12-08 fcde53508c9da3a22337298b9daf4df603180531
1
2
3
4
5
6
7
8
9
10
11
12
package model
 
import (
    "time"
)
 
type CommonModel struct {
    ID        uint `gorm:"primary_key" json:"ID,string"`
    CreatedAt time.Time
    UpdatedAt time.Time
    DeletedAt *time.Time `sql:"index"`
}