feat : 실행계획 조회 수정(description 추가)
This commit is contained in:
parent
002adbed34
commit
6e1d9b2ff5
@ -41,6 +41,7 @@ public class ActionPlanService implements ActionPlanUseCase {
|
||||
.map(plan -> ActionPlanListResponse.builder()
|
||||
.id(plan.getId())
|
||||
.title(plan.getTitle())
|
||||
.description(plan.getDescription())
|
||||
.status(plan.getStatus())
|
||||
.period(plan.getPeriod())
|
||||
.createdAt(plan.getCreatedAt())
|
||||
|
||||
@ -20,6 +20,7 @@ public class ActionPlanListResponse {
|
||||
private Long id;
|
||||
private String title;
|
||||
private PlanStatus status;
|
||||
private String description;
|
||||
private String period;
|
||||
private LocalDateTime createdAt;
|
||||
private LocalDateTime completedAt;
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user