Skip to content

Commit

Permalink
code add
Browse files Browse the repository at this point in the history
  • Loading branch information
chosoobin37 committed Jul 2, 2024
1 parent e574ee5 commit f215f1c
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
@Getter
@Setter
@ToString
@Data
public class Member {
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
@Getter
@Setter
@ToString
@Data
public class Reservation {
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
import com.team4chamchi.tunastudycicd.reservation.aggregate.Reservation;
import com.team4chamchi.tunastudycicd.reservation.dto.ReservationDTO;
import com.team4chamchi.tunastudycicd.reservation.repository.ReservationRepository;
import com.team4chamchi.tunastudy.studyroom.aggregate.StudyRoom;
import com.team4chamchi.tunastudy.studyroom.respository.StudyRoomRepository;
import com.team4chamchi.tunastudycicd.studyroom.aggregate.StudyRoom;
import com.team4chamchi.tunastudycicd.studyroom.respository.StudyRoomRepository;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.scheduling.annotation.Scheduled;
import org.springframework.stereotype.Service;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
import org.springframework.stereotype.Service;

import java.util.List;
import java.util.stream.Collectors;

@Service
public class StudyRoomService {
Expand Down

0 comments on commit f215f1c

Please sign in to comment.