管道基础大数据平台系统开发-【后端】-Server
src/main/java/com/lf/server/mapper/all/BaseQueryMapper.java
@@ -4,7 +4,6 @@
import com.lf.server.entity.ctrl.KeyValueEntity;
import com.lf.server.entity.ctrl.TabEntity;
import com.lf.server.entity.data.DictEntity;
import com.lf.server.entity.data.DirEntity;
import com.lf.server.entity.data.DomainEntity;
import org.apache.ibatis.annotations.Mapper;
import org.springframework.stereotype.Repository;
@@ -44,22 +43,21 @@
    /**
     * 根据表名查询记录数
     *
     * @param tab    表名
     * @param filter 过滤条件
     * @param tab 表名
     * @return
     */
    public Integer selectTabsForCount(String tab, String filter);
    public Integer selectTabsForCount(String tab);
    /**
     * 根据表名分页查询
     *
     * @param tab    表名
     * @param filter 过滤条件
     * @param limit  记录数
     * @param offset 偏移量
     * @param tab     表名
     * @param filters 过滤条件
     * @param limit   记录数
     * @param offset  偏移量
     * @return
     */
    public List<TabEntity> selectTabsByPage(String tab, String filter, Integer limit, Integer offset);
    public List<TabEntity> selectTabsByPage(String tab, String filters, Integer limit, Integer offset);
    /**
     * 查询字段信息
@@ -99,23 +97,10 @@
    public List<KeyValueEntity> selectLocation(String wkt);
    /**
     * 查询基础地理类别
     * 查询目录类别
     *
     * @param name
     * @return
     */
    public List<KeyValueEntity> selectBaseType();
    /**
     * 查询业务类别
     *
     * @return
     */
    public List<KeyValueEntity> selectBusinessType();
    /**
     * 查询项目
     *
     * @return
     */
    public List<KeyValueEntity> selectProject();
    public List<KeyValueEntity> selectDirTypes(String name);
}