2023-10-18 09:01:50 +00:00
|
|
|
|
package com.yzdx.AiInterviewer.service;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
import com.baomidou.mybatisplus.extension.service.IService;
|
|
|
|
|
import com.yzdx.AiInterviewer.comment.R;
|
|
|
|
|
import com.yzdx.AiInterviewer.entity.User;
|
|
|
|
|
|
|
|
|
|
public interface UserService extends IService<User> {
|
|
|
|
|
|
|
|
|
|
/** 管理员登录业务
|
|
|
|
|
* @param phone,encoding,password
|
|
|
|
|
* @return boolean,ture登陆成功,false:登陆失败
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
R adminLogin(String phone, String encoding, String password);
|
2023-10-19 13:40:26 +00:00
|
|
|
|
|
|
|
|
|
User getUserById(Integer userid);
|
2023-10-18 09:01:50 +00:00
|
|
|
|
}
|
2023-10-19 13:40:26 +00:00
|
|
|
|
|