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
Files
bookshelfplus/bookshelfplus/src/main/java/plus/bookshelf/Dao/Mapper/VisitorFingerprintLogDOMapper.java

55 lines
1.6 KiB
Java
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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);
}