| | |
| | | /** |
| | | * 查询记录数 |
| | | * |
| | | * @param name 名称 |
| | | * @param depName 名称 |
| | | * @param dirid 目录ID |
| | | * @param name 名称 |
| | | * @return 记录数 |
| | | */ |
| | | public Integer selectCount(String name,String depName); |
| | | public Integer selectCount(Integer dirid, String name); |
| | | |
| | | /** |
| | | * 分页查询 |
| | | * |
| | | * @param name 名称 |
| | | * @param depName 名称 |
| | | * @param dirid 目录ID |
| | | * @param name 名称 |
| | | * @param limit 记录数 |
| | | * @param offset 偏移量 |
| | | * @return 列表 |
| | | */ |
| | | public List<VerEntity> selectByPage(String name, String depName, Integer limit, Integer offset); |
| | | public List<VerEntity> selectByPage(Integer dirid, String name, Integer limit, Integer offset); |
| | | |
| | | /** |
| | | * 根据目录ID查询版本列表 |