This commit is contained in:
2023-12-20 16:20:49 +08:00
parent dd432ead11
commit 026a299f88
48 changed files with 37 additions and 438 deletions

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