We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2ec7fb6 commit ab66613Copy full SHA for ab66613
src/main/java/dmu/dasom/api/domain/executive/dto/ExecutiveRequestDto.java
@@ -11,7 +11,6 @@
11
import lombok.NoArgsConstructor;
12
13
@Getter
14
-@Setter
15
@NoArgsConstructor
16
@AllArgsConstructor
17
@Schema(name = "ExecutiveRequestDto", description = "임원진 요청 DTO")
src/main/java/dmu/dasom/api/domain/executive/entity/ExecutiveEntity.java
@@ -76,6 +76,7 @@ public ExecutiveResponseDto toResponseDto() {
76
.role(this.role)
77
.github_username(this.githubUsername)
78
.team(this.team)
79
+ .sortOrder(this.sortOrder)
80
.build();
81
}
82
@@ -88,6 +89,7 @@ public ExecutiveListResponseDto toListResponseDto() {
88
89
90
91
92
93
94
95
0 commit comments