-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* refactor: authenticate via providerId * feature: ์ํฐํฐ์ ์นผ๋ผ ์ถ๊ฐ * feature: ๋ฌธ์ ์ธ์ฆ ๊ธฐ๋ฅ ๊ตฌํ * feature: ์ฃผ์, ๊ณ์ข ์ ๋ณด ์ถ๊ฐ ์ ๋ ฅ
- Loading branch information
1 parent
ff8e7ef
commit 113ff98
Showing
4 changed files
with
30 additions
and
4 deletions.
There are no files selected for viewing
4 changes: 4 additions & 0 deletions
4
src/main/java/com/example/repick/domain/user/dto/PatchUserInfo.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,14 @@ | ||
package com.example.repick.domain.user.dto; | ||
|
||
import com.example.repick.global.entity.Account; | ||
import com.example.repick.global.entity.Address; | ||
import io.swagger.v3.oas.annotations.media.Schema; | ||
|
||
public record PatchUserInfo( | ||
@Schema(description = "์ด๋ฉ์ผ", example = "[email protected]") String email, | ||
@Schema(description = "๋๋ค์", example = "ํ ์คํธ") String nickname, | ||
Address address, | ||
Account account, | ||
@Schema(description = "์์ ์ฌ์ด์ฆ", example = "L") String topSize, | ||
@Schema(description = "ํ์ ์ฌ์ด์ฆ", example = "L") String bottomSize, | ||
@Schema(description = "ํธ์์๋ฆผ ํ์ฉ ์ฌ๋ถ ( true | false )", example = "true") Boolean pushAllow, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
11 changes: 11 additions & 0 deletions
11
src/main/java/com/example/repick/global/entity/Account.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
package com.example.repick.global.entity; | ||
|
||
import io.swagger.v3.oas.annotations.media.Schema; | ||
import lombok.Getter; | ||
|
||
@Getter | ||
public class Account { | ||
@Schema(description = "์ํ๋ช ", example = "์นด์นด์ค๋ฑ ํฌ") private String bankName; | ||
@Schema(description = "๊ณ์ข๋ฒํธ", example = "3338088020629") private String accountNumber; | ||
@Schema(description = "์๊ธ์ฃผ", example = "์์ฐฌํ") private String accountHolder; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters