1
0
mirror of https://gitee.com/bookshelfplus/bookshelfplus synced 2025-09-21 01:10:39 +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,55 @@
package plus.bookshelf.Dao.Mapper;
import org.springframework.stereotype.Repository;
import plus.bookshelf.Dao.DO.VisitorFingerprintLogDO;
@Repository // 添加这个注解Autowired的时候idea就不会报错了
public interface VisitorFingerprintLogDOMapper {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table visitor_fingerprint_log
*
* @mbg.generated
*/
int deleteByPrimaryKey(Integer id);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table visitor_fingerprint_log
*
* @mbg.generated
*/
int insert(VisitorFingerprintLogDO row);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table visitor_fingerprint_log
*
* @mbg.generated
*/
int insertSelective(VisitorFingerprintLogDO row);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table visitor_fingerprint_log
*
* @mbg.generated
*/
VisitorFingerprintLogDO selectByPrimaryKey(Integer id);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table visitor_fingerprint_log
*
* @mbg.generated
*/
int updateByPrimaryKeySelective(VisitorFingerprintLogDO row);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table visitor_fingerprint_log
*
* @mbg.generated
*/
int updateByPrimaryKey(VisitorFingerprintLogDO row);
}