Skip to content

Commit

Permalink
[#143] Fix: String 대신 LocalDateTime으로 저장 시간 타입 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
yo0oni committed Sep 1, 2024
1 parent 5ecc8e3 commit 75750d6
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,14 @@
import com.isp.backend.domain.scheduleImage.entity.ScheduleImage;
import lombok.Getter;

import java.time.LocalDateTime;

@Getter
public class SaveScheduleImageResponse {
private Long id;
private Long scheduleId;
private String path;
private String saveDate;
private LocalDateTime saveDate;

public SaveScheduleImageResponse(ScheduleImage scheduleImage) {
this.id = scheduleImage.getId();
Expand Down

0 comments on commit 75750d6

Please sign in to comment.