Ai-interviewer-system/src/main/java/com/yzdx/AiInterviewer/service/UserService.java

21 lines
495 B
Java
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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);
User getUserById(Integer userid);
}