Skip to content

Commit 4f7ca69

Browse files
fix : 데이터 구조 및 형식 변경
1 parent bfffce4 commit 4f7ca69

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/main/java/com/synergy/backend/domain/booth/dto/boothParticipateDto/BoothParticipationInterestedResponseDto.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ public class BoothParticipationInterestedResponseDto {
1616
private String boothLocation;
1717
private String boothNumber;
1818
private String boothDescription;
19-
@JsonFormat(shape = JsonFormat.Shape.STRING, pattern = "MM/dd")
19+
@JsonFormat(shape = JsonFormat.Shape.STRING, pattern = "yyyy-MM-dd")
2020
private LocalDate progressDate;
2121
private String qrCode;
2222
private List<BoothParticipateInterestedTechDto> dataset;

src/main/java/com/synergy/backend/domain/session/controller/SessionController.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ public ApiResponse createSession(@AuthenticationPrincipal CustomUserDetails user
5050
@SwaggerSummaryRole({RoleType.ADMIN, RoleType.RECRUITER, RoleType.ATTENDEE})
5151
@GetMapping
5252
public ApiResponse getSessions(@AuthenticationPrincipal CustomUserDetails user,
53-
@PathVariable(name = "conferenceId") Long conferenceId,) {
53+
@PathVariable(name = "conferenceId") Long conferenceId) {
5454
List<SessionResDto> result = sessionService.getSessions(user.getIdentifier(), conferenceId);
5555

5656
return ApiResponse.ok(result, 200);

0 commit comments

Comments
 (0)