| | |
| | | import com.ruoyi.account.api.model.AppUser; |
| | | import com.ruoyi.account.mapper.AppUserMapper; |
| | | import com.ruoyi.account.service.IAppUserService; |
| | | import com.ruoyi.account.vo.AppletLogin; |
| | | import com.ruoyi.common.core.web.domain.AjaxResult; |
| | | import org.springframework.stereotype.Service; |
| | | |
| | | /** |
| | |
| | | */ |
| | | @Service |
| | | public class AppUserServiceImpl extends ServiceImpl<AppUserMapper, AppUser> implements IAppUserService { |
| | | |
| | | /** |
| | | * 小程序一键登录 |
| | | * @param appletLogin |
| | | * @return |
| | | */ |
| | | @Override |
| | | public AjaxResult appletLogin(AppletLogin appletLogin) { |
| | | String jscode = appletLogin.getJscode(); |
| | | |
| | | return null; |
| | | } |
| | | } |