-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
90 additions
and
0 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
27 changes: 27 additions & 0 deletions
27
src/main/java/com/likelion/innerjoin/user/model/dto/request/ClubUpdateRequestDto.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,27 @@ | ||
package com.likelion.innerjoin.user.model.dto.request; | ||
|
||
import lombok.Builder; | ||
import lombok.Getter; | ||
import lombok.NoArgsConstructor; | ||
|
||
@Getter | ||
@NoArgsConstructor | ||
public class ClubUpdateRequestDto { | ||
|
||
private String name; | ||
private String school; | ||
private String email; | ||
private String loginId; | ||
private String password; | ||
private Long categoryId; | ||
|
||
@Builder | ||
public ClubUpdateRequestDto(String name, String school, String email, String loginId, String password, Long categoryId) { | ||
this.name = name; | ||
this.school = school; | ||
this.email = email; | ||
this.loginId = loginId; | ||
this.password = password; | ||
this.categoryId = categoryId; | ||
} | ||
} |
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