-
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.
Browse files
Browse the repository at this point in the history
…actoring [REFACTOR] : 전면 수정, 코드 리팩토링
- Loading branch information
Showing
8 changed files
with
93 additions
and
154 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
38 changes: 10 additions & 28 deletions
38
src/main/java/sopt/univoice/domain/auth/dto/MemberCreateRequest.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,32 +1,14 @@ | ||
package sopt.univoice.domain.auth.dto; | ||
|
||
|
||
import lombok.*; | ||
import org.springframework.web.multipart.MultipartFile; | ||
@Setter | ||
@Getter | ||
@NoArgsConstructor | ||
@AllArgsConstructor | ||
@ToString | ||
public class MemberCreateRequest{ | ||
|
||
private Long admissionNumber; | ||
|
||
private String name; | ||
|
||
private String studentNumber; | ||
|
||
private String email; | ||
|
||
private String password; | ||
|
||
MultipartFile studentCardImage; | ||
|
||
private String universityName; | ||
|
||
private String departmentName; | ||
|
||
|
||
|
||
|
||
} | ||
public record MemberCreateRequest( | ||
Long admissionNumber, | ||
String name, | ||
String studentNumber, | ||
String email, | ||
String password, | ||
MultipartFile studentCardImage, | ||
String universityName, | ||
String departmentName | ||
) {} |
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
37 changes: 0 additions & 37 deletions
37
src/main/java/sopt/univoice/domain/firstcome/entity/FirstCome.java
This file was deleted.
Oops, something went wrong.
20 changes: 0 additions & 20 deletions
20
src/main/java/sopt/univoice/domain/firstcome/entity/FirstComeNumberHistory.java
This file was deleted.
Oops, something went wrong.
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
16 changes: 16 additions & 0 deletions
16
src/main/java/sopt/univoice/domain/user/service/UserService.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,20 @@ | ||
package sopt.univoice.domain.user.service; | ||
|
||
public class UserService { | ||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
} |