实体层,dao层基本创建

This commit is contained in:
2023-12-19 14:04:28 +08:00
parent e8a518bd6b
commit 0721107407
54 changed files with 2970 additions and 8 deletions

View File

@@ -0,0 +1,19 @@
package com.lovenav.mapper;
import com.lovenav.entity.UrlAccess;
import org.springframework.stereotype.Repository;
@Repository
public interface UrlAccessDao {
int deleteByPrimaryKey(Integer id);
int insert(UrlAccess record);
int insertSelective(UrlAccess record);
UrlAccess selectByPrimaryKey(Integer id);
int updateByPrimaryKeySelective(UrlAccess record);
int updateByPrimaryKey(UrlAccess record);
}