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 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 selectChildrenByCateId(Integer id); public int deleteByPrimaryKey(Integer id); }