1
0
mirror of https://gitee.com/bookshelfplus/bookshelfplus synced 2025-09-14 20:41:38 +08:00
Code Issues Projects Releases Wiki Activity GitHub Gitee

用户反馈书籍失效,下载书籍,以及登录注册时记录用户浏览器指纹(获取不到浏览器指纹的使用浏览器UA代替)

This commit is contained in:
2022-04-19 22:49:31 +08:00
parent fe23b88427
commit 26af60e472
16 changed files with 3131 additions and 25 deletions

View File

@@ -0,0 +1,13 @@
package plus.bookshelf.Service.Service;
public interface VisitorFingerprintLogService {
/**
* 将用户指纹信息存入数据库
*
* @param action
* @param userId
* @param fingerprint
* @return
*/
Boolean saveFingerprint(String action, Integer userId, String fingerprint);
}