管道基础大数据平台系统开发-【后端】-Server
1
13693261870
2023-02-16 a39c7b9256e163f69764df58782a0cb920711a9f
src/main/java/com/lf/server/mapper/all/BaseQueryMapper.java
@@ -44,20 +44,22 @@
    /**
     * 根据表名查询记录数
     *
     * @param tab 表名
     * @return 记录数
     * @param tab    表名
     * @param filter 过滤条件
     * @return
     */
    public Integer selectTabsForCount(String tab);
    public Integer selectTabsForCount(String tab, String filter);
    /**
     * 根据表名分页查询
     *
     * @param tab    表名
     * @param filter 过滤条件
     * @param limit  记录数
     * @param offset 偏移量
     * @return
     */
    public List<TabEntity> selectTabsByPage(String tab, Integer limit, Integer offset);
    public List<TabEntity> selectTabsByPage(String tab, String filter, Integer limit, Integer offset);
    /**
     * 查询字段信息