-
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.
Feature: 사장님 인증 요청 상세 내용 조회 API 개발
- Loading branch information
Showing
8 changed files
with
100 additions
and
14 deletions.
There are no files selected for viewing
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
13 changes: 8 additions & 5 deletions
13
cakk-api/src/main/java/com/cakk/api/dto/response/shop/CakeShopOwnerCandidateResponse.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,11 +1,14 @@ | ||
package com.cakk.api.dto.response.shop; | ||
|
||
import java.util.List; | ||
|
||
import com.cakk.api.dto.param.operation.OwnerCandidateParam; | ||
import lombok.Builder; | ||
|
||
@Builder | ||
public record CakeShopOwnerCandidateResponse( | ||
List<OwnerCandidateParam> candidates | ||
Long userId, | ||
Long cakeShopId, | ||
String email, | ||
String businessRegistrationImageUrl, | ||
String idCardImageUrl, | ||
String emergencyContact | ||
) { | ||
} | ||
|
11 changes: 11 additions & 0 deletions
11
cakk-api/src/main/java/com/cakk/api/dto/response/shop/CakeShopOwnerCandidatesResponse.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.cakk.api.dto.response.shop; | ||
|
||
import java.util.List; | ||
|
||
import com.cakk.api.dto.param.operation.OwnerCandidateParam; | ||
|
||
public record CakeShopOwnerCandidatesResponse( | ||
List<OwnerCandidateParam> candidates | ||
) { | ||
} | ||
|
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
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
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
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
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