puzhibing
2023-06-14 e9c96f32b0830cf7bc6ee66ce2c7a9784c679753
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
package com.dsh.account.service;
 
import com.dsh.account.entity.TAppUser;
import com.baomidou.mybatisplus.service.IService;
import com.dsh.account.model.vo.classDetails.classInsVo.ClassInfoVo;
import com.dsh.account.util.ResultUtil;
 
/**
 * <p>
 * 用户信息 服务类
 * </p>
 *
 * @author administrator
 * @since 2023-06-14
 */
public interface TAppUserService extends IService<TAppUser> {
 
    ClassInfoVo queryUserOfStus(Integer id);
 
 
    /**
     * 获取短信验证码
     * @param type
     * @param phone
     * @return
     * @throws Exception
     */
    ResultUtil getSMSCode(Integer type, String phone) throws Exception;
}