-
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: User 필드 추가 - 총학점, 수강학점, 졸엽 가능 여부 * refactor: user정보 수정 로직 변경 * refactor: 오타 수정 * refactor: 졸업 계산 시 유저 정보 수정 로직 추가 * refactor: 유저 정보 조회 response 수정 * build: 불필요 의존성 제거 * refactor: 성적표 파싱 로직 수정
- Loading branch information
Showing
16 changed files
with
208 additions
and
96 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
25 changes: 25 additions & 0 deletions
25
...myongjigraduatebe/user/api/finduserinformation/dto/response/CompleteDivisionResponse.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,25 @@ | ||
package com.plzgraduate.myongjigraduatebe.user.api.finduserinformation.dto.response; | ||
|
||
import lombok.Builder; | ||
import lombok.Getter; | ||
|
||
@Getter | ||
public class CompleteDivisionResponse { | ||
|
||
private final String majorType; | ||
|
||
private final String major; | ||
|
||
@Builder | ||
private CompleteDivisionResponse(String majorType, String major) { | ||
this.majorType = majorType; | ||
this.major = major; | ||
} | ||
|
||
public static CompleteDivisionResponse of(String majorType, String major) { | ||
return CompleteDivisionResponse.builder() | ||
.majorType(majorType) | ||
.major(major) | ||
.build(); | ||
} | ||
} |
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
4 changes: 3 additions & 1 deletion
4
...te/myongjigraduatebe/user/application/usecase/update/UpdateStudentInformationUseCase.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,5 +1,7 @@ | ||
package com.plzgraduate.myongjigraduatebe.user.application.usecase.update; | ||
|
||
import com.plzgraduate.myongjigraduatebe.user.domain.model.User; | ||
|
||
public interface UpdateStudentInformationUseCase { | ||
void updateUser(UpdateStudentInformationCommand updateStudentInformationCommand); | ||
User updateUser(UpdateStudentInformationCommand updateStudentInformationCommand); | ||
} |
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.