• haoyanbin's avatar
    1 · c65e78f1
    haoyanbin authored
    c65e78f1
model.go 185 Bytes
package models

import (
	"time"
)

type BaseModel struct {
	CreatedAt time.Time  `json:"createdAt"`
	UpdatedAt time.Time  `json:"updatedAt"`
	DeletedAt *time.Time `json:"deletedAt"`
}