2025-05-28 16:19:21 +08:00

16 lines
298 B
Go

package model
import (
"time"
"gorm.io/gorm"
)
// Base 模型基础字段
type Base struct {
ID uint `gorm:"primarykey" json:"id"`
CreatedAt time.Time `json:"created_at"`
UpdatedAt time.Time `json:"updated_at"`
DeletedAt gorm.DeletedAt `gorm:"index" json:"-"`
}