Files
gochat/internal/model/base_test.txt
T
2026-06-04 15:44:48 +08:00

15 lines
355 B
Plaintext

package model
import (
"encoding/json"
"time"
"gorm.io/gorm"
)
type BaseModel struct {
ID uint `gorm:"primaryKey" json:"id"`
CreatedAt time.Time `gorm:"autoCreateTime" json:"created_at"`
UpdatedAt time.Time `gorm:"autoUpdateTime" json:"updated_at"`
DeletedAt gorm.DeletedAt `gorm:"index" json:"deleted_at,omitempty"`
}