| | |
| | | /** |
| | | * 查询记录数 |
| | | * |
| | | * @param name 名称 |
| | | * @param name 名称 |
| | | * @param status 状态 |
| | | * @param category 服务类别 |
| | | * @param type 服务类型 |
| | | * @param data 数据类型 |
| | | * @return 记录数 |
| | | */ |
| | | public Integer selectCount(String name); |
| | | public Integer selectCount(String name, Integer status, Integer category, Integer type, Integer data); |
| | | |
| | | /** |
| | | * 分页查询 |
| | | * |
| | | * @param name 名称 |
| | | * @param limit 记录数 |
| | | * @param offset 偏移量 |
| | | * @param name 名称 |
| | | * @param status 状态 |
| | | * @param category 服务类别 |
| | | * @param type 服务类型 |
| | | * @param data 数据类型 |
| | | * @param limit 记录数 |
| | | * @param offset 偏移量 |
| | | * @return 列表 |
| | | */ |
| | | public List<ResEntity> selectByPage(String name, Integer limit, Integer offset); |
| | | public List<ResEntity> selectByPage(String name, Integer status, Integer category, Integer type, Integer data, Integer limit, Integer offset); |
| | | |
| | | /** |
| | | * 查询所有 |