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