推荐网址

This commit is contained in:
cyk
2023-12-25 13:28:47 +08:00
parent f7269cc5e2
commit 0dde2afb6c
5 changed files with 47 additions and 0 deletions

View File

@@ -18,4 +18,10 @@ public interface UrlListService {
public int deleteByPrimaryKey(Long id);
public int deleteByCateId(Long id);
public List<UrlList> TopEight();
public List<UrlList> latestEight();
}

View File

@@ -87,4 +87,8 @@ public class UrlLiserServiceImpl implements UrlListService {
{
return urlListDao.deleteByCateId(id);
}
public List<UrlList> TopEight(){return urlListDao.TopEight(); }
public List<UrlList> latestEight(){return urlListDao.latestEight(); }
}