| | |
| | | /** |
| | | * 查询记录数 |
| | | * |
| | | * @param depid 单位ID |
| | | * @param dirid 目录ID |
| | | * @param name 名称 |
| | | * @return 记录数 |
| | | */ |
| | | public Integer selectCount(Integer dirid, String name); |
| | | public Integer selectCount(Integer depid, Integer dirid, String name); |
| | | |
| | | /** |
| | | * 分页查询 |
| | | * |
| | | * @param depid 单位ID |
| | | * @param dirid 目录ID |
| | | * @param name 名称 |
| | | * @param limit 记录数 |
| | | * @param offset 偏移量 |
| | | * @return 列表 |
| | | */ |
| | | public List<MetaEntity> selectByPage(Integer dirid, String name, Integer limit, Integer offset); |
| | | public List<MetaEntity> selectByPage(Integer depid, Integer dirid, String name, Integer limit, Integer offset); |
| | | |
| | | /** |
| | | * 查询上传记录数 |