13 lines
297 B
Go
13 lines
297 B
Go
|
package utils
|
||
|
|
||
|
import "time"
|
||
|
|
||
|
type ResourceMeta struct {
|
||
|
// 资源Id
|
||
|
Id uint `json:"id" gorm:"primaryKey;column:id"`
|
||
|
// 创建时间
|
||
|
CreatedAt time.Time `json:"created_at" gorm:"column:created_at;not null"`
|
||
|
// 更新时间
|
||
|
UpdatedAt *time.Time `json:"updated_at" gorm:"column:updated_at"`
|
||
|
}
|