update
This commit is contained in:
19
src/main/java/com/lovenav/dao/LoginLogsDao.java
Normal file
19
src/main/java/com/lovenav/dao/LoginLogsDao.java
Normal file
@@ -0,0 +1,19 @@
|
||||
package com.lovenav.dao;
|
||||
|
||||
import com.lovenav.entity.LoginLogs;
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
@Repository
|
||||
public interface LoginLogsDao {
|
||||
int deleteByPrimaryKey(Integer id);
|
||||
|
||||
int insert(LoginLogs record);
|
||||
|
||||
int insertSelective(LoginLogs record);
|
||||
|
||||
LoginLogs selectByPrimaryKey(Integer id);
|
||||
|
||||
int updateByPrimaryKeySelective(LoginLogs record);
|
||||
|
||||
int updateByPrimaryKey(LoginLogs record);
|
||||
}
|
Reference in New Issue
Block a user