-
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
1 parent
0324611
commit df072e6
Showing
6 changed files
with
102 additions
and
14 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
45 changes: 45 additions & 0 deletions
45
src/main/java/com/dsmpear/main/user_backend_v2/payload/response/ReportModifyResponse.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,45 @@ | ||
package com.dsmpear.main.user_backend_v2.payload.response; | ||
|
||
import com.dsmpear.main.user_backend_v2.entity.report.enums.Access; | ||
import com.dsmpear.main.user_backend_v2.entity.report.enums.Field; | ||
import com.dsmpear.main.user_backend_v2.entity.report.enums.Grade; | ||
import com.dsmpear.main.user_backend_v2.entity.report.enums.Type; | ||
import lombok.AllArgsConstructor; | ||
import lombok.Builder; | ||
import lombok.Getter; | ||
import lombok.NoArgsConstructor; | ||
|
||
import java.time.LocalDateTime; | ||
import java.util.List; | ||
|
||
@Getter | ||
@Builder | ||
@NoArgsConstructor | ||
@AllArgsConstructor | ||
public class ReportModifyResponse { | ||
|
||
private String title; | ||
|
||
private String description; | ||
|
||
private LocalDateTime createdAt; | ||
|
||
private List<String> languages; | ||
|
||
private Type type; | ||
|
||
private Grade grade; | ||
|
||
private Access access; | ||
|
||
private Field field; | ||
|
||
private String teamName; | ||
|
||
private List<MemberResponse> member; | ||
|
||
private Long fileId; | ||
|
||
private String github; | ||
|
||
} |
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