Files

12 lines
185 B
Go
Raw Permalink Normal View History

2025-06-29 00:36:30 +08:00
package models
import (
"time"
)
type BaseModel struct {
CreatedAt time.Time `json:"createdAt"`
UpdatedAt time.Time `json:"updatedAt"`
DeletedAt *time.Time `json:"deletedAt"`
}