-
Notifications
You must be signed in to change notification settings - Fork 4
[REFACTOR] 홈 화면 로직 변경 #239
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,24 @@ | ||
| package com.deare.backend.api.home.dto.request; | ||
| import jakarta.validation.constraints.NotBlank; | ||
| import jakarta.validation.constraints.NotNull; | ||
| import jakarta.validation.constraints.Pattern; | ||
|
|
||
| import java.math.BigDecimal; | ||
| import java.util.List; | ||
|
|
||
| public record HomeEditRequestDTO( | ||
| @NotBlank | ||
| @Pattern(regexp = "^#([A-Fa-f0-9]{6}|[A-Fa-f0-9]{8})$", | ||
| message = "HEX 색상 코드 형식이 올바르지 않습니다.") | ||
| String homeColor, List<StickerRequest> stickers | ||
| ) { | ||
| @NotNull | ||
| public record StickerRequest( | ||
| Long imageId, | ||
| BigDecimal posX, | ||
| BigDecimal posY, | ||
| Integer posZ, | ||
| BigDecimal rotation, | ||
| BigDecimal scale | ||
| ){} | ||
| } |
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
Uh oh!
There was an error while loading. Please reload this page.