delete AdminDao.java

This commit is contained in:
landaiqing 2023-12-20 16:22:20 +08:00
parent 026a299f88
commit a001f2f05f
2 changed files with 0 additions and 37 deletions

View File

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

View File

@ -1,18 +0,0 @@
package com.lovenav.dao;
import org.springframework.stereotype.Repository;
@Repository
public interface AdminMetaDao {
int deleteByPrimaryKey(Long id);
int insert(AdminMeta record);
int insertSelective(AdminMeta record);
AdminMeta selectByPrimaryKey(Long id);
int updateByPrimaryKeySelective(AdminMeta record);
int updateByPrimaryKey(AdminMeta record);
}