puzhibing
2023-06-15 1ad095d298f4211d65273d2197532cc605109b8b
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
72
73
74
75
76
77
package com.dsh.account.service;
 
import com.dsh.account.entity.TAppUser;
import com.dsh.account.model.AddAppUserVo;
import com.dsh.account.model.LoginSMSCodeVo;
import com.dsh.account.model.LoginWeChatVo;
import com.dsh.account.model.vo.classDetails.classInsVo.ClassInfoVo;
import com.dsh.account.util.ResultUtil;
import com.baomidou.mybatisplus.extension.service.IService;
 
/**
 * <p>
 * 用户信息 服务类
 * </p>
 *
 * @author administrator
 * @since 2023-06-14
 */
public interface TAppUserService extends IService<TAppUser> {
 
    ClassInfoVo queryUserOfStus(Integer id,String longitude,String latitude);
 
 
    /**
     * 获取短信验证码
     * @param type
     * @param phone
     * @return
     * @throws Exception
     */
    ResultUtil getSMSCode(Integer type, String phone) throws Exception;
 
 
    /**
     * 注册账号
     * @return
     * @throws Exception
     */
    ResultUtil addAppUser(AddAppUserVo addAppUserVo) throws Exception;
 
 
    /**
     * 账号密码登录
     * @param phone
     * @param password
     * @return
     * @throws Exception
     */
    ResultUtil loginPassword(String phone, String password) throws Exception;
 
 
    /**
     * 验证码登录
     * @return
     * @throws Exception
     */
    ResultUtil loginSMSCode(LoginSMSCodeVo loginSMSCodeVo) throws Exception;
 
 
    /**
     * 微信登录
     * @return
     * @throws Exception
     */
    ResultUtil loginWechat(LoginWeChatVo loginWechatVo) throws Exception;
 
 
    /**
     * 修改密码
     * @param phone
     * @param code
     * @param password
     * @return
     * @throws Exception
     */
    ResultUtil updatePassword(String phone, String code, String password) throws Exception;
}