-
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.
Merge pull request #329 from WE-ARE-RACCOONS/RAC-478
RAC-478 feat : κ΄λ¦¬μ νμ΄μ§ API
- Loading branch information
Showing
42 changed files
with
731 additions
and
415 deletions.
There are no files selected for viewing
13 changes: 7 additions & 6 deletions
13
...min/application/dto/res/WishResponse.java β ...ication/dto/res/MatchingWishResponse.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,15 +1,16 @@ | ||
package com.postgraduate.admin.application.dto.res; | ||
|
||
|
||
import java.time.LocalDateTime; | ||
|
||
public record WishResponse( | ||
public record MatchingWishResponse( | ||
Long wishId, | ||
String nickName, | ||
String field, | ||
String postgradu, | ||
String professor, | ||
String lab, | ||
String phoneNumber, | ||
LocalDateTime createAt, | ||
Boolean marketingReceive, | ||
Boolean matchingReceive, | ||
String major, | ||
String field | ||
LocalDateTime updatedAt | ||
) { | ||
} |
6 changes: 6 additions & 0 deletions
6
src/main/java/com/postgraduate/admin/application/dto/res/MatchingWishResponses.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,6 @@ | ||
package com.postgraduate.admin.application.dto.res; | ||
|
||
import java.util.List; | ||
|
||
public record MatchingWishResponses(List<MatchingWishResponse> wishResponses) { | ||
} |
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
6 changes: 6 additions & 0 deletions
6
src/main/java/com/postgraduate/admin/application/dto/res/PaymentInfos.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,6 @@ | ||
package com.postgraduate.admin.application.dto.res; | ||
|
||
import java.util.List; | ||
|
||
public record PaymentInfos(List<PaymentInfo> paymentInfos) { | ||
} |
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
17 changes: 0 additions & 17 deletions
17
src/main/java/com/postgraduate/admin/application/dto/res/SalaryInfoWithOutId.java
This file was deleted.
Oops, something went wrong.
6 changes: 6 additions & 0 deletions
6
src/main/java/com/postgraduate/admin/application/dto/res/SalaryInfos.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,6 @@ | ||
package com.postgraduate.admin.application.dto.res; | ||
|
||
import java.util.List; | ||
|
||
public record SalaryInfos(List<SalaryInfo> salaryInfos) { | ||
} |
6 changes: 6 additions & 0 deletions
6
src/main/java/com/postgraduate/admin/application/dto/res/SeniorInfos.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,6 @@ | ||
package com.postgraduate.admin.application.dto.res; | ||
|
||
import java.util.List; | ||
|
||
public record SeniorInfos(List<SeniorInfo> seniorInfos) { | ||
} |
6 changes: 6 additions & 0 deletions
6
src/main/java/com/postgraduate/admin/application/dto/res/UnsettledSalaryInfos.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,6 @@ | ||
package com.postgraduate.admin.application.dto.res; | ||
|
||
import java.util.List; | ||
|
||
public record UnsettledSalaryInfos(List<UnSettledSalaryInfo> unSettledSalaryInfos) { | ||
} |
7 changes: 1 addition & 6 deletions
7
src/main/java/com/postgraduate/admin/application/dto/res/UserInfo.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,17 +1,12 @@ | ||
package com.postgraduate.admin.application.dto.res; | ||
|
||
import com.postgraduate.domain.member.user.domain.entity.constant.Status; | ||
|
||
import java.time.LocalDateTime; | ||
|
||
public record UserInfo( | ||
Long userId, | ||
String nickName, | ||
String phoneNumber, | ||
LocalDateTime createdAt, | ||
Boolean marketingReceive, | ||
Boolean matchingReceive, | ||
Long wishId, | ||
Status matchingStatus, | ||
Boolean marketinRgeceive, | ||
Boolean isSenior | ||
) { } |
2 changes: 1 addition & 1 deletion
2
...pplication/dto/res/UserMentoringInfo.java β ...in/application/dto/res/UserInfoBasic.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,6 +1,6 @@ | ||
package com.postgraduate.admin.application.dto.res; | ||
|
||
public record UserMentoringInfo( | ||
public record UserInfoBasic( | ||
String nickName, | ||
String phoneNumber | ||
) { } |
6 changes: 6 additions & 0 deletions
6
src/main/java/com/postgraduate/admin/application/dto/res/UserInfos.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,6 @@ | ||
package com.postgraduate.admin.application.dto.res; | ||
|
||
import java.util.List; | ||
|
||
public record UserInfos(List<UserInfo> userInfos) { | ||
} |
14 changes: 14 additions & 0 deletions
14
src/main/java/com/postgraduate/admin/application/dto/res/WaitingWishResponse.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,14 @@ | ||
package com.postgraduate.admin.application.dto.res; | ||
|
||
import java.time.LocalDateTime; | ||
|
||
public record WaitingWishResponse( | ||
Long wishId, | ||
String field, | ||
String postgradu, | ||
String professor, | ||
String lab, | ||
String phoneNumber, | ||
LocalDateTime createAt | ||
) { | ||
} |
6 changes: 6 additions & 0 deletions
6
src/main/java/com/postgraduate/admin/application/dto/res/WaitingWishResponses.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,6 @@ | ||
package com.postgraduate.admin.application.dto.res; | ||
|
||
import java.util.List; | ||
|
||
public record WaitingWishResponses(List<WaitingWishResponse> wishResponses) { | ||
} |
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
Oops, something went wrong.