-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'develop' into 8-be-소셜링-검색-구현
- Loading branch information
Showing
18 changed files
with
625 additions
and
28 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
19 changes: 19 additions & 0 deletions
19
src/main/java/com/example/likelion12/dto/crew/GetCrewInquiryResponse.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,19 @@ | ||
package com.example.likelion12.dto.crew; | ||
|
||
import com.example.likelion12.domain.base.BaseLevel; | ||
import lombok.AllArgsConstructor; | ||
import lombok.Getter; | ||
|
||
@Getter | ||
@AllArgsConstructor | ||
public class GetCrewInquiryResponse { | ||
/** | ||
* 크루 조회 response dto | ||
*/ | ||
private String crewName; | ||
private String crewImg; | ||
private String activityRegionName; | ||
private String exerciseName; | ||
private BaseLevel level; | ||
private String commentSimple; | ||
} |
21 changes: 21 additions & 0 deletions
21
src/main/java/com/example/likelion12/dto/crew/GetCrewSearchFilterRequest.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,21 @@ | ||
package com.example.likelion12.dto.crew; | ||
|
||
import com.example.likelion12.domain.base.BaseGender; | ||
import com.example.likelion12.domain.base.BaseLevel; | ||
import lombok.AllArgsConstructor; | ||
import lombok.Getter; | ||
|
||
@Getter | ||
@AllArgsConstructor | ||
public class GetCrewSearchFilterRequest { | ||
|
||
/** | ||
* 크루 검색결과 필터링 request dto | ||
*/ | ||
private BaseGender gender; | ||
private BaseLevel level; | ||
private Integer crewCostMin; | ||
private Integer crewCostMax; | ||
private Integer totalRecruitsMin; | ||
private Integer totalRecruitsMax; | ||
} |
21 changes: 21 additions & 0 deletions
21
src/main/java/com/example/likelion12/dto/crew/GetCrewSearchFilterResponse.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,21 @@ | ||
package com.example.likelion12.dto.crew; | ||
|
||
import lombok.AllArgsConstructor; | ||
import lombok.Getter; | ||
|
||
@Getter | ||
@AllArgsConstructor | ||
public class GetCrewSearchFilterResponse { | ||
/** | ||
* 크루 검색결과 필터링 response dto | ||
*/ | ||
private Long crewId; | ||
private String crewName; | ||
private String crewImg; | ||
private int crewCost; | ||
private String activityRegionName; | ||
private String exerciseName; | ||
private int currentRecruits; | ||
private int totalRecruits; | ||
private String commentSimple; | ||
} |
18 changes: 18 additions & 0 deletions
18
src/main/java/com/example/likelion12/dto/crew/GetCrewSearchResponse.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,18 @@ | ||
package com.example.likelion12.dto.crew; | ||
|
||
import com.example.likelion12.domain.base.BaseLevel; | ||
import lombok.AllArgsConstructor; | ||
import lombok.Data; | ||
|
||
@AllArgsConstructor | ||
@Data | ||
public class GetCrewSearchResponse { | ||
|
||
private long crewId; | ||
private String crewName; | ||
private String crewImg; | ||
private String activeAreaName; | ||
private String commentSimple; | ||
private BaseLevel level; | ||
private String exerciseName; | ||
} |
24 changes: 24 additions & 0 deletions
24
src/main/java/com/example/likelion12/dto/crew/GetJoinCrewResponse.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,24 @@ | ||
package com.example.likelion12.dto.crew; | ||
|
||
import com.example.likelion12.domain.MemberCrew; | ||
import com.example.likelion12.domain.base.BaseLevel; | ||
import com.example.likelion12.domain.base.BaseRole; | ||
import com.example.likelion12.domain.base.BaseStatus; | ||
import lombok.AllArgsConstructor; | ||
import lombok.Getter; | ||
import lombok.NoArgsConstructor; | ||
|
||
import java.util.List; | ||
|
||
@Getter | ||
@AllArgsConstructor | ||
@NoArgsConstructor | ||
public class GetJoinCrewResponse { | ||
|
||
private String crewName; | ||
private String crewImg; | ||
private String commentSimple; | ||
private String exercise_name; | ||
private String activty_area_name; | ||
private BaseLevel level; | ||
} |
25 changes: 25 additions & 0 deletions
25
src/main/java/com/example/likelion12/dto/socialring/GetSocialringSearchFilterRequest.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.example.likelion12.dto.socialring; | ||
|
||
import com.example.likelion12.domain.base.BaseGender; | ||
import com.example.likelion12.domain.base.BaseLevel; | ||
import lombok.AllArgsConstructor; | ||
import lombok.Getter; | ||
|
||
|
||
@Getter | ||
@AllArgsConstructor | ||
public class GetSocialringSearchFilterRequest { | ||
|
||
/** | ||
* 소셜링 검색결과 필터링 request dto | ||
*/ | ||
|
||
private String exerciseName; | ||
private BaseGender gender; | ||
private BaseLevel level; | ||
private Integer socialringCostMin; | ||
private Integer socialringCostMax; | ||
private Integer totalRecruitsMin; | ||
private Integer totalRecruitsMax; | ||
|
||
} |
30 changes: 30 additions & 0 deletions
30
src/main/java/com/example/likelion12/dto/socialring/GetSocialringSearchFilterResponse.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,30 @@ | ||
package com.example.likelion12.dto.socialring; | ||
|
||
import lombok.AllArgsConstructor; | ||
import lombok.Getter; | ||
import com.example.likelion12.domain.base.BaseGender; | ||
import com.example.likelion12.domain.base.BaseLevel; | ||
import com.example.likelion12.domain.base.BaseRole; | ||
import lombok.AllArgsConstructor; | ||
import lombok.Getter; | ||
|
||
import java.time.LocalDate; | ||
|
||
@Getter | ||
@AllArgsConstructor | ||
public class GetSocialringSearchFilterResponse { | ||
|
||
/** | ||
* 소셜링 검색결과필터링 response dto | ||
*/ | ||
private Long socialringId; | ||
private String socialringName; | ||
private String socialringImg; | ||
private String activityRegionName; | ||
private LocalDate socialringDate; | ||
private int socialringCost; | ||
private String commentSimple; | ||
private int currentRecruits; | ||
private int totalRecruits; | ||
|
||
} |
Oops, something went wrong.