leaf-library-3/internal/dto/base.go

11 lines
203 B
Go
Raw Normal View History

2024-12-06 18:44:32 +00:00
package dto
import "time"
// BaseDTO 基础数据传输对象
type BaseDTO struct {
ID EntityId `json:"id"`
CreatedAt time.Time `json:"created_at"`
UpdatedAt time.Time `json:"updated_at"`
}