| | |
| | | import com.ruoyi.account.service.AppUserShopService; |
| | | import org.springframework.stereotype.Service; |
| | | |
| | | import java.util.Collections; |
| | | import java.util.Map; |
| | | |
| | | /** |
| | | * @author zhibing.pu |
| | | * @Date 2024/12/2 9:21 |
| | | */ |
| | | @Service |
| | | public class AppUserShopServiceImpl extends ServiceImpl<AppUserShopMapper, AppUserShop> implements AppUserShopService { |
| | | @Override |
| | | public Integer getHaveShopUserNum() { |
| | | return this.baseMapper.getHaveShopUserNum(); |
| | | } |
| | | |
| | | @Override |
| | | public Map<String, Object> getPointAndPayAmount(Long userId) { |
| | | |
| | | return this.baseMapper.getPointAndPayAmount(userId); |
| | | } |
| | | } |