forked from 9oormthon-univ/2024_DANPOONG_TEAM_5_BE
-
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 branch '9oormthon-univ:develop' into develop
- Loading branch information
Showing
4 changed files
with
115 additions
and
51 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
33 changes: 33 additions & 0 deletions
33
src/main/java/com/jangburich/domain/team/dto/response/TeamCodeResponse.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,33 @@ | ||
package com.jangburich.domain.team.dto.response; | ||
|
||
import java.time.LocalDateTime; | ||
import java.util.List; | ||
|
||
import com.jangburich.domain.common.Status; | ||
import com.jangburich.domain.team.domain.TeamType; | ||
|
||
import lombok.Builder; | ||
import lombok.Getter; | ||
import lombok.Setter; | ||
|
||
@Setter | ||
@Getter | ||
public class TeamCodeResponse { | ||
private String teamName; | ||
private LocalDateTime createdAt; | ||
private TeamType teamType; | ||
private Long teamMembers; | ||
private List<String> teamMemberProfileImages; | ||
private Status status; | ||
|
||
@Builder | ||
public TeamCodeResponse(String teamName, LocalDateTime createdAt, TeamType teamType, Long teamMembers, | ||
List<String> teamMemberProfileImages, Status status) { | ||
this.teamName = teamName; | ||
this.createdAt = createdAt; | ||
this.teamType = teamType; | ||
this.teamMembers = teamMembers; | ||
this.teamMemberProfileImages = teamMemberProfileImages; | ||
this.status = status; | ||
} | ||
} |
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