-
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 #261 from WE-ARE-RACCOONS/RAC-367
RAC-367 feat : 매칭 관련 알림톡 구현
- Loading branch information
Showing
40 changed files
with
232 additions
and
69 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
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
2 changes: 1 addition & 1 deletion
2
...obal/bizppurio/dto/req/CommonRequest.java → ...io/application/dto/req/CommonRequest.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
5 changes: 5 additions & 0 deletions
5
src/main/java/com/postgraduate/global/bizppurio/application/dto/req/ContentRequest.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,5 @@ | ||
package com.postgraduate.global.bizppurio.application.dto.req; | ||
|
||
import com.postgraduate.global.bizppurio.application.dto.req.content.Message; | ||
|
||
public record ContentRequest(Message at) {} |
6 changes: 6 additions & 0 deletions
6
...java/com/postgraduate/global/bizppurio/application/dto/req/JuniorMatchingFailRequest.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.global.bizppurio.application.dto.req; | ||
|
||
public record JuniorMatchingFailRequest( | ||
String phoneNumber, String name, String originPostgraduate, String originMajor, String alterPostgraduate, String alterMajor | ||
) { | ||
} |
6 changes: 6 additions & 0 deletions
6
...a/com/postgraduate/global/bizppurio/application/dto/req/JuniorMatchingSuccessRequest.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.global.bizppurio.application.dto.req; | ||
|
||
public record JuniorMatchingSuccessRequest( | ||
String phoneNumber, String name, String postgraduate, String major | ||
) { | ||
} |
7 changes: 7 additions & 0 deletions
7
...a/com/postgraduate/global/bizppurio/application/dto/req/JuniorMatchingWaitingRequest.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,7 @@ | ||
package com.postgraduate.global.bizppurio.application.dto.req; | ||
|
||
public record JuniorMatchingWaitingRequest( | ||
String name, | ||
String phoneNumber | ||
) { | ||
} |
4 changes: 2 additions & 2 deletions
4
.../content/CertificationApproveMessage.java → .../content/CertificationApproveMessage.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
4 changes: 2 additions & 2 deletions
4
...q/content/CertificationDeniedMessage.java → ...q/content/CertificationDeniedMessage.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
2 changes: 1 addition & 1 deletion
2
.../dto/req/content/JuniorAcceptMessage.java → .../dto/req/content/JuniorAcceptMessage.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
2 changes: 1 addition & 1 deletion
2
...o/dto/req/content/JuniorApplyMessage.java → ...n/dto/req/content/JuniorApplyMessage.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
4 changes: 2 additions & 2 deletions
4
.../dto/req/content/JuniorFinishMessage.java → .../dto/req/content/JuniorFinishMessage.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
11 changes: 11 additions & 0 deletions
11
.../postgraduate/global/bizppurio/application/dto/req/content/JuniorMatchingFailMessage.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.postgraduate.global.bizppurio.application.dto.req.content; | ||
|
||
import com.postgraduate.global.bizppurio.application.dto.req.content.button.WebLinkButton; | ||
|
||
public record JuniorMatchingFailMessage ( | ||
String message, | ||
String senderkey, | ||
String templatecode, | ||
WebLinkButton[] button | ||
) implements Message | ||
{} |
11 changes: 11 additions & 0 deletions
11
...stgraduate/global/bizppurio/application/dto/req/content/JuniorMatchingSuccessMessage.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.postgraduate.global.bizppurio.application.dto.req.content; | ||
|
||
import com.postgraduate.global.bizppurio.application.dto.req.content.button.WebLinkButton; | ||
|
||
public record JuniorMatchingSuccessMessage( | ||
String message, | ||
String senderkey, | ||
String templatecode, | ||
WebLinkButton[] button | ||
) implements Message { | ||
} |
8 changes: 8 additions & 0 deletions
8
...stgraduate/global/bizppurio/application/dto/req/content/JuniorMatchingWaitingMessage.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,8 @@ | ||
package com.postgraduate.global.bizppurio.application.dto.req.content; | ||
|
||
public record JuniorMatchingWaitingMessage( | ||
String message, | ||
String senderkey, | ||
String templatecode | ||
) implements Message { | ||
} |
4 changes: 2 additions & 2 deletions
4
.../dto/req/content/JuniorRefuseMessage.java → .../dto/req/content/JuniorRefuseMessage.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
4 changes: 4 additions & 0 deletions
4
src/main/java/com/postgraduate/global/bizppurio/application/dto/req/content/Message.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,4 @@ | ||
package com.postgraduate.global.bizppurio.application.dto.req.content; | ||
|
||
public interface Message { | ||
} |
2 changes: 1 addition & 1 deletion
2
.../dto/req/content/SeniorAcceptMessage.java → .../dto/req/content/SeniorAcceptMessage.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
4 changes: 2 additions & 2 deletions
4
...o/dto/req/content/SeniorApplyMessage.java → ...n/dto/req/content/SeniorApplyMessage.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
2 changes: 1 addition & 1 deletion
2
.../dto/req/content/SeniorFinishMessage.java → .../dto/req/content/SeniorFinishMessage.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
4 changes: 2 additions & 2 deletions
4
.../dto/req/content/SeniorSingUpMessage.java → .../dto/req/content/SeniorSingUpMessage.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
2 changes: 1 addition & 1 deletion
2
...dto/req/content/button/WebLinkButton.java → ...dto/req/content/button/WebLinkButton.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
2 changes: 1 addition & 1 deletion
2
...purio/dto/res/BizppurioTokenResponse.java → ...ation/dto/res/BizppurioTokenResponse.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,3 +1,3 @@ | ||
package com.postgraduate.global.bizppurio.dto.res; | ||
package com.postgraduate.global.bizppurio.application.dto.res; | ||
|
||
public record BizppurioTokenResponse(String accesstoken, String type, String expired) {} |
2 changes: 1 addition & 1 deletion
2
...al/bizppurio/dto/res/MessageResponse.java → .../application/dto/res/MessageResponse.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,4 +1,4 @@ | ||
package com.postgraduate.global.bizppurio.dto.res; | ||
package com.postgraduate.global.bizppurio.application.dto.res; | ||
|
||
public record MessageResponse(int code, String description, String messagekey, String refkey) { | ||
} |
Oops, something went wrong.