feat(新增): 购物车模块初始化
This commit is contained in:
parent
b7b252294f
commit
4a5477af0f
|
@ -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 {
|
||||||
|
}
|
|
@ -0,0 +1,5 @@
|
||||||
|
package com.atguigu.ssyx.cart.service;
|
||||||
|
|
||||||
|
public interface CartInfoService {
|
||||||
|
|
||||||
|
}
|
|
@ -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 {
|
||||||
|
}
|
Loading…
Reference in New Issue