You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
431 B
Java
17 lines
431 B
Java
package com.supervision.service;
|
|
|
|
import com.supervision.pojo.vo.UserAccountCheckResVo;
|
|
import com.supervision.pojo.vo.UserInfoReqVo;
|
|
import com.supervision.pojo.vo.UserInfoResVo;
|
|
|
|
public interface UserManageService {
|
|
|
|
UserInfoResVo getUserAccountInfo(String userId);
|
|
|
|
boolean changePassWord(UserInfoReqVo userInfo);
|
|
|
|
boolean register(UserInfoReqVo userInfo);
|
|
|
|
UserAccountCheckResVo checkAccount(String account);
|
|
}
|