Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Backend : fix] Schedule 파일 이동 및 폴더명 변경 #21

Merged
merged 1 commit into from
Feb 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -38,5 +38,10 @@ public ResponseEntity<List<ScheduleListResponseDTO>> getScheduleList(@Authentica
List<ScheduleListResponseDTO> scheduleList = scheduleService.getScheduleList(uid);
return ResponseEntity.ok(scheduleList);
}

}
@PostMapping("/")
@ResponseStatus(HttpStatus.OK)
public ScheduleResponseDTO login(@RequestBody ScheduleRequestDTO scheduleRequestDTO) {
return new ScheduleResponseDTO(schedule);
Schedule schedule = scheduleService.create(scheduleRequestDTO.toEntity());
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
package com.isp.backend.domain.schedule.dto;

import lombok.AllArgsConstructor;
import lombok.Getter;
import lombok.NoArgsConstructor;
import lombok.Setter;

@Getter
@Setter
@NoArgsConstructor
@AllArgsConstructor
public class ScheduleRequestDTO {
private String destination;
private String purpose;
private String departureDate;
private String returnDate;
}
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
@Builder
@Setter
@NoArgsConstructor(access = AccessLevel.PROTECTED)
@Table(name="schedules")
@Table(name="schedule")
public class Schedule extends BaseEntity {

@Id
Expand Down