21 lines
488 B
Java
21 lines
488 B
Java
package com.sdut.labex.service;
|
|
|
|
import com.baomidou.mybatisplus.extension.service.IService;
|
|
import com.sdut.labex.entity.User;
|
|
import com.sdut.labex.utils.ResVo;
|
|
|
|
/**
|
|
* File: UserService
|
|
* Created: 2023/6/11
|
|
* Author: springforest
|
|
* Description:
|
|
*/
|
|
|
|
public interface UserService extends IService<User> {
|
|
public ResVo login(String id, String password);
|
|
|
|
public ResVo register(User user);
|
|
|
|
public ResVo changePassword(String id, String oldPassword, String newPassword);
|
|
}
|