| | |
| | | * 根据表名查询记录数 |
| | | * |
| | | * @param tab 表名 |
| | | * @return 记录数 |
| | | * @return |
| | | */ |
| | | public Integer selectTabsForCount(String tab); |
| | | |
| | | /** |
| | | * 根据表名分页查询 |
| | | * |
| | | * @param tab 表名 |
| | | * @param limit 记录数 |
| | | * @param offset 偏移量 |
| | | * @param tab 表名 |
| | | * @param filters 过滤条件 |
| | | * @param limit 记录数 |
| | | * @param offset 偏移量 |
| | | * @return |
| | | */ |
| | | public List<TabEntity> selectTabsByPage(String tab, Integer limit, Integer offset); |
| | | public List<TabEntity> selectTabsByPage(String tab, String filters, Integer limit, Integer offset); |
| | | |
| | | /** |
| | | * 查询字段信息 |
| | |
| | | * @return |
| | | */ |
| | | public List<KeyValueEntity> selectProject(); |
| | | |
| | | /** |
| | | * 查询字典表并统计记录 |
| | | * |
| | | * @param depcode |
| | | * @param dirs |
| | | * @param name |
| | | * @param limit |
| | | * @param offset |
| | | * @return |
| | | */ |
| | | public List<DictEntity> selectTabCount(String depcode, String dirs, String name, Integer limit, Integer offset); |
| | | } |