huliguo
2025-06-13 6acf6357094588946b5528f1ef1ed84a0f1037fd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package com.ruoyi.account.mapper;
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.ruoyi.account.api.model.AppUserShop;
import org.apache.ibatis.annotations.Param;
 
import java.util.Map;
 
/**
 * @author zhibing.pu
 * @Date 2024/12/2 9:20
 */
public interface AppUserShopMapper extends BaseMapper<AppUserShop> {
    Integer getHaveShopUserNum();
 
    Map<String, Object> getPointAndPayAmount(@Param("userId") Long userId);
}