Skip to content

Commit e43fc75

Browse files
committed
fix agaiin
1 parent 03379ae commit e43fc75

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

spring-boot-backend/src/main/java/com/example/springbootbackend/dto/SearchResponseDTO.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
package com.example.springbootbackend.dto;
2+
23
import com.example.springbootbackend.dto.produce.ProduceResponseDTO;
34
import com.example.springbootbackend.dto.store.StoreResponseDTO;
5+
import java.util.List;
46

57
public record SearchResponseDTO(
68
List<ProduceResponseDTO> produce,

spring-boot-backend/src/main/java/com/example/springbootbackend/repository/StoreRepository.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
import org.springframework.stereotype.Repository;
99

1010
import java.util.Optional;
11+
import java.util.List;
1112

1213
@Repository
1314
public interface StoreRepository extends JpaRepository<Store, Integer> {

0 commit comments

Comments
 (0)