fix(customer-vue): 장바구니에 아이템 담을시 에러 수정

- 장바구니에 아이템 담을시 에러 수정
This commit is contained in:
hoon7566
2022-03-22 18:29:23 +09:00
parent 9ea7e82842
commit cd3e509071
4 changed files with 5 additions and 3 deletions

View File

@@ -9,4 +9,5 @@ import java.util.List;
public interface ItemOptionRepository extends JpaRepository<ItemOption,Long> {
List<ItemOption> findByItem(Item item);
}