huliguo
2025-04-21 17abf0608f62cdd318dba3e7b12a32ea486cb482
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
package com.ruoyi.account.service;
 
import com.baomidou.mybatisplus.core.metadata.IPage;
import com.baomidou.mybatisplus.extension.service.IService;
import com.ruoyi.account.api.model.AppUser;
import com.ruoyi.account.dto.ApplyForAdmissionDTO;
import com.ruoyi.account.vo.*;
import com.ruoyi.common.core.domain.R;
import com.ruoyi.common.core.web.domain.AjaxResult;
import com.ruoyi.common.core.web.page.PageInfo;
 
import java.util.List;
import java.util.Set;
 
/**
 * <p>
 *  服务类
 * </p>
 *
 * @author luodangjia
 * @since 2024-11-21
 */
public interface AppUserService extends IService<AppUser> {
    
    
    /**
     * 小程序一键登录
     * @param appletLogin
     * @return
     */
    R appletLogin(AppletLogin appletLogin);
    
    
    /**
     * 手机号码登录
     * @param mobileLogin
     * @return
     */
    R<LoginVo> mobileLogin(MobileLogin mobileLogin);
    
    
    /**
     * 获取短信验证码
     * @param smsCode
     * @return
     */
    R getSMSCode(SMSCode smsCode);
    
    
    /**
     * 注册账号
     */
//    R<LoginVo> registerAccount(RegisterAccount registerAccount);
 
 
 
 
 
    IPage<AppUser> getAppuserPage(Integer pageNum, Integer pageSize, AppUser appUser, Integer shopId, Set<Long> userId);
 
 
    IPage<AppUser> getAppuserPage1(Integer pageNum, Integer pageSize, AppUser appUser,List<Long> userIds);
 
    List<AppUser> getAppUserByPhoneNoFilter(String phone);
 
 
 
    AppUser index();
 
    PageInfo<UserPointStatisticsVO> getUserPointPageList(String name, Integer pageCurr, Integer pageSize);
}