| | |
| | | package cn.lili.modules.member.service; |
| | | |
| | | |
| | | import cn.lili.base.Result; |
| | | import cn.lili.common.security.enums.UserEnums; |
| | | import cn.lili.common.security.token.Token; |
| | | import cn.lili.common.vo.PageVO; |
| | |
| | | * @since 2020-02-25 14:10:16 |
| | | */ |
| | | public interface MemberService extends IService<Member> { |
| | | /** |
| | | * 重置密码 默认值123456 |
| | | * @param id 用户id |
| | | * @return |
| | | */ |
| | | Result resetPassword(String id); |
| | | |
| | | /** |
| | | * 用户权限管理修改用户 |
| | | * @param id 会员id |
| | | * @param password 密码 |
| | | * @param mobile 电话(账号) |
| | | * @return |
| | | */ |
| | | Member updateMemberPartProperties(String id,String password,String mobile); |
| | | |
| | | /** |
| | | * 默认密码 |
| | | */ |
| | |
| | | boolean appSConfirm(String token, Integer code); |
| | | |
| | | QRLoginResultVo loginWithSession(String token); |
| | | } |
| | | |
| | | Member findByUUID(String uuid); |
| | | |
| | | void registerHandler(Member user); |
| | | } |