接口213132123123123123123123123123
This commit is contained in:
@@ -18,5 +18,6 @@ public interface UrlCateListService {
|
||||
public UrlCateList selectByPrimaryKey(Integer id);
|
||||
|
||||
public int insertSelective(UrlCateList urlCateList);
|
||||
public int updateByUrlCateList(UrlCateList urlCateList);
|
||||
|
||||
}
|
||||
|
@@ -14,4 +14,5 @@ public interface UrlListService {
|
||||
public int updateUrlStatusListById(UrlList urlList);
|
||||
|
||||
public List<UrlList> selectUrListByNeedLogin();
|
||||
public int insertUrlByUser(UrlList urlList);
|
||||
}
|
||||
|
@@ -67,6 +67,11 @@ public class UrlCateListServiceImpl implements UrlCateListService {
|
||||
{
|
||||
return urlCateListDao.insertSelective(urlCateList);
|
||||
}
|
||||
|
||||
public int updateByUrlCateList(UrlCateList urlCateList)
|
||||
{
|
||||
return urlCateListDao.updateByPrimaryKeySelective(urlCateList);
|
||||
}
|
||||
public UrlCateList selectByPrimaryKey(Integer id)
|
||||
{
|
||||
return urlCateListDao.selectByPrimaryKey(id);
|
||||
|
@@ -56,7 +56,7 @@ public class UrlLiserServiceImpl implements UrlListService {
|
||||
return urlListDao.selectUrListByNeedLogin();
|
||||
}
|
||||
|
||||
|
||||
public int insertUrlByUser(UrlList urlList){return urlListDao.insertSelective(urlList);}
|
||||
|
||||
public UrlList selectUrListByInput(String input)
|
||||
{
|
||||
|
Reference in New Issue
Block a user