实体层,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.Auth;
import org.springframework.stereotype.Repository;
@Repository
public interface AuthDao {
int deleteByPrimaryKey(Integer id);
int insert(Auth record);
int insertSelective(Auth record);
Auth selectByPrimaryKey(Integer id);
int updateByPrimaryKeySelective(Auth record);
int updateByPrimaryKey(Auth record);
}