-
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.
#215 [refactor] applicationRetrieve service 에서 컨트롤러 변경
- Loading branch information
pkl0912
committed
Jan 31, 2024
1 parent
e0008ea
commit 8a8fd44
Showing
6 changed files
with
84 additions
and
31 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
15 changes: 15 additions & 0 deletions
15
src/main/java/com/moddy/server/controller/model/dto/ApplicationDto.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,15 @@ | ||
package com.moddy.server.controller.model.dto; | ||
|
||
import com.moddy.server.controller.designer.dto.response.HairRecordResponse; | ||
|
||
import java.util.List; | ||
|
||
public record ApplicationDto( | ||
String modelImgUrl, | ||
String hairLength, | ||
List<String> preferHairStyleList, | ||
List<HairRecordResponse> recordResponseList, | ||
String hairDetail, | ||
String instgramId | ||
) { | ||
} |
6 changes: 5 additions & 1 deletion
6
src/main/java/com/moddy/server/controller/model/dto/ApplicationModelInfoDto.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,8 +1,12 @@ | ||
package com.moddy.server.controller.model.dto; | ||
|
||
import java.util.List; | ||
|
||
public record ApplicationModelInfoDto( | ||
Long modelId, | ||
String name, | ||
int age, | ||
String gender | ||
String gender, | ||
List<String> regionList | ||
) { | ||
} |
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