leaf-library-3/internal/dto/base.go
2024-12-10 18:22:14 +08:00

11 lines
203 B
Go

package dto
import "time"
// BaseDTO 基础数据传输对象
type BaseDTO struct {
ID EntityId `json:"id"`
CreatedAt time.Time `json:"created_at"`
UpdatedAt time.Time `json:"updated_at"`
}