webman-tech / dto
There is no license information available for the latest version (v1.0.0) of this package.
v1.0.0
2025-07-09 10:21 UTC
Requires
- php: ^8.2
README
本项目是从 webman-tech/components-monorepo 自动 split 出来的,请勿直接修改
简介
各种常用的 DTO
- BaseDTO: 基础 DTO
- 支持
fromData
从数组创建对象,并自动根据类型和 ValidationRules 进行验证 - 支持
toArray
,自动将 public 属性转出为数组
- 支持
- BaseRequestDTO: 基础请求的 DTO
- 支持
fromRequest
从各种框架的 Request 来创建对象
- 支持
- BaseResponseDTO: 基础响应的 DTO
- 支持
toResponse
- 支持