zhangqian
2023-12-08 a9fdd955d57f6940d170a2f4c36a9bb8f0fcf871
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"`
}