| | |
| | | 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; |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | |
| | | /** |
| | | * <p> |
| | |
| | | */ |
| | | public interface TAppUserService extends IService<TAppUser> { |
| | | |
| | | ClassInfoVo queryUserOfStus(Integer id); |
| | | ClassInfoVo queryUserOfStus(Integer id,String longitude,String latitude); |
| | | |
| | | |
| | | /** |
| | | * 获取短信验证码 |
| | | * @param type |
| | | * @param phone |
| | | * @return |
| | | * @throws Exception |
| | | */ |
| | | ResultUtil getSMSCode(Integer type, String phone) throws Exception; |
| | | } |