[Spring][쇼핑몰 프로젝트][36] 장바구니 기능(장바구니 추가(서버 구현))

- 4 누락 코드 추가
This commit is contained in:
SeoJin Kim
2021-11-18 04:25:40 +09:00
parent 7350d40e1e
commit eefe054f9e
2 changed files with 4 additions and 2 deletions

View File

@@ -1,10 +1,11 @@
package com.vam.service;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import com.vam.mapper.CartMapper;
import com.vam.model.CartDTO;
@Service
public class CartServiceImpl implements CartService {
@Autowired

View File

@@ -1,10 +1,11 @@
package com.vam.service;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import com.vam.mapper.CartMapper;
import com.vam.model.CartDTO;
@Service
public class CartServiceImpl implements CartService {
@Autowired