Pu Zhibing
2024-11-25 abd19b59926737dad2ca58331bcf38a2f3d1d32b
1
2
3
4
5
6
7
8
9
10
11
package com.ruoyi.other.service.impl;
 
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.ruoyi.other.api.domain.ShoppingCart;
import com.ruoyi.other.mapper.ShoppingCartMapper;
import com.ruoyi.other.service.ShoppingCartService;
import org.springframework.stereotype.Service;
 
@Service
public class ShoppingCartServiceImpl extends ServiceImpl<ShoppingCartMapper, ShoppingCart> implements ShoppingCartService {
}