package org.jeecg.modules.doc.mapper; import java.util.List; import java.util.Map; import org.apache.ibatis.annotations.Param; import org.apache.ibatis.annotations.Update; import org.jeecg.modules.doc.entity.DocFilePath; import com.baomidou.mybatisplus.core.mapper.BaseMapper; /** * @Description: doc_file_path * @Author: jeecg-boot * @Date: 2022-07-04 * @Version: V1.0 */ public interface DocFilePathMapper extends BaseMapper { List selectUserFileByLikeRightFilePath(@Param("filePath") String filePath); List> querySubCount(String[] list); }