登录页面

登录接口功能
This commit is contained in:
xiongfeng
2022-06-28 20:07:35 +08:00
parent 9212332d4e
commit 6fabbcacd2
8 changed files with 136 additions and 24 deletions

View File

@@ -0,0 +1,13 @@
package cn.xf.basedemo.service;
/**
* @program: xf-boot-base
* @ClassName UserService
* @description:
* @author: xiongfeng
* @create: 2022-06-28 09:21
**/
public interface UserService {
String login(String encryptedData);
}