• haoyanbin's avatar
    1 · 5d0794c3
    haoyanbin authored
    5d0794c3
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"`
}