Skip to content

Commit ab66613

Browse files
committed
fix: 코드 수정
1 parent 2ec7fb6 commit ab66613

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

src/main/java/dmu/dasom/api/domain/executive/dto/ExecutiveRequestDto.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111
import lombok.NoArgsConstructor;
1212

1313
@Getter
14-
@Setter
1514
@NoArgsConstructor
1615
@AllArgsConstructor
1716
@Schema(name = "ExecutiveRequestDto", description = "임원진 요청 DTO")

src/main/java/dmu/dasom/api/domain/executive/entity/ExecutiveEntity.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,7 @@ public ExecutiveResponseDto toResponseDto() {
7676
.role(this.role)
7777
.github_username(this.githubUsername)
7878
.team(this.team)
79+
.sortOrder(this.sortOrder)
7980
.build();
8081
}
8182

@@ -88,6 +89,7 @@ public ExecutiveListResponseDto toListResponseDto() {
8889
.role(this.role)
8990
.github_username(this.githubUsername)
9091
.team(this.team)
92+
.sortOrder(this.sortOrder)
9193
.build();
9294
}
9395
}

0 commit comments

Comments
 (0)