-
Добавить модель товара (пока без бд)
```
class Item {
- dto DTO
+ DTO() DTO
}
class DTO {
+ id int
+ title string
+ description string
+ price int
}
Item *-- DTO
```
Создать Товар с произвол…
-
### 로그인 성공
![스크린샷 2024-10-11 01 07 43](https://github.com/user-attachments/assets/3e4d1ed3-86fc-4f10-b684-19deb52f94b0)
### JWT 토큰을 통한 유저 리스트 조회
![스크린샷 2024-10-11 01 08 22](https://gi…
shnmj updated
1 month ago
-
hi, isn't making classes via the validation middleware costly - reallocating memory to the req.body object into a class and than again creating a model class for insertion...
isn't there a way to …
-
```
NEW FEATURE:
Applications needs to transfer model objects to view mostly using dto objects.
Such as if a have a Book JPA entity class and want to transfer some of
properties of this class to v…
-
- [x] Change Model classes to DTO classes
- [x] Create converter class
-
**Is your feature request related to a problem? Please describe.**
To decouple relation between Application and Persistence layers even more, there must be provided additional class layer for entities…
-
This PR added [Support associations in DTOs](https://github.com/micronaut-projects/micronaut-data/pull/2495) has not documentation associated with it. Can we document it?
-
***procedimiento Enviar Validacion***
-
***procedimiento Obtener Validacion***
-
I'm integrating `utoipa-axum` into a project where individual handlers are separated into modules with uniform naming of DTO types, e.g.:
```rust
mod handler_a {
#[utoipa::path(
get,…