feat(新增): 购物车模块初始化

This commit is contained in:
bunny 2024-04-10 10:11:37 +08:00
parent b7b252294f
commit 4a5477af0f
3 changed files with 22 additions and 0 deletions

View File

@ -0,0 +1,9 @@
package com.atguigu.ssyx.cart.controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
@RestController
@RequestMapping("/api/cart")
public class CartApiController {
}

View File

@ -0,0 +1,5 @@
package com.atguigu.ssyx.cart.service;
public interface CartInfoService {
}

View File

@ -0,0 +1,8 @@
package com.atguigu.ssyx.cart.service.impl;
import com.atguigu.ssyx.cart.service.CartInfoService;
import org.springframework.stereotype.Service;
@Service
public class CartInfoServiceImpl implements CartInfoService {
}