tgtools.web.develop.service.UserService Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tgtools.web.develop Show documentation
Show all versions of tgtools.web.develop Show documentation
base spring boot develop sample
package tgtools.web.develop.service;
import tgtools.exceptions.APPErrorException;
/**
* @author 田径
* @Title
* @Description
* @date 10:07
*/
public interface UserService {
boolean validLoginUser(String pUsername, String pPassword) throws APPErrorException;
String createToken(String pUsername, String pAddr) throws APPErrorException;
void tokenLogin(String pAddr, String pUsername, String pToken) throws APPErrorException;
}