Skip to content

Commit

Permalink
fix: 수정 러닝 기록 dto
Browse files Browse the repository at this point in the history
  • Loading branch information
korno1 committed Oct 6, 2024
1 parent 4a1b000 commit ef97590
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,9 @@ public class RecordDetailResponseDto {
private Long courseId;
private String courseName;
private String comment;
private double runningDistance;
private LocalDateTime startDate;
private LocalDateTime finishDate;
private String address;
private LocalTime score;
private double averageFace;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ public class RecordResponseDto {
private double runningDistance;
private String address;
private LocalDateTime startDate;
private LocalDateTime finishDate;
private LocalTime score;
private double averageFace;
private double lat;
Expand Down
2 changes: 1 addition & 1 deletion BackEnd/src/main/resources/application.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ spring:
diarect: org.hibernate.dialect.MysqlDialect
jdbc:
batch_size: 1000
show_sql: true
show_sql: false
format_sql: false
use_sql_comments: false
order_updates: true
Expand Down

0 comments on commit ef97590

Please sign in to comment.