Files
love-nav/src/main/java/com/lovenav/service/UrlCateListService.java
2023-12-24 22:28:39 +08:00

29 lines
799 B
Java

package com.lovenav.service;
import com.alibaba.fastjson2.JSONArray;
import com.lovenav.entity.UrlCateList;
import java.util.List;
public interface UrlCateListService {
public int selectAndInsertUrlCate(Integer userId , String cateName , String parent,String icon);
public List<UrlCateList> selectUrListByUserId(Integer userId);
public String countCateContainUrlNumber(Integer userId);
public JSONArray getUrl(String userId);
public String selectUrListCateByUrlCateId(Integer cateId);
public UrlCateList selectByPrimaryKey(Integer id);
public int insertSelective(UrlCateList urlCateList);
public int updateByUrlCateList(UrlCateList urlCateList);
public List<String> selectChildrenByCateId(Integer id);
public int deleteByPrimaryKey(Integer id);
}