yuxc
2023-09-14 aa3b56b8ab335277351f503b8d38e1a0a5fe7477
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package com.vci.ubcs.code.service;
 
/**
 * 免密登录服务
 * @author ludc
 * @date 2023/9/11 15:46
 */
public interface IPasswordFreeLoginService {
 
    /**
     * 免密登录方法
     * @param username 账号
     * @return
     */
    boolean passwordFreeLogin(String username);
 
 
}