New file |
| | |
| | | package com.panzhihua.service_community.service; |
| | | |
| | | import com.panzhihua.common.model.dtos.community.ComCvtCategoryDTO; |
| | | import com.panzhihua.common.model.dtos.community.PageComCvtCategoryDTO; |
| | | import com.panzhihua.common.model.vos.R; |
| | | |
| | | /** |
| | | * @description: 便民服务 分类 |
| | | * @author: Null |
| | | * @date: 2021/3/11 16:56 |
| | | */ |
| | | public interface ComCvtCategoryService { |
| | | |
| | | /** |
| | | * 分页查询便民服务分类 |
| | | * @param pageComCvtCategoryDTO 查询参数 |
| | | * @return 分页集合 |
| | | */ |
| | | R pageComCvtCategory(PageComCvtCategoryDTO pageComCvtCategoryDTO); |
| | | |
| | | /** |
| | | * 添加便民服务分类 |
| | | * @param comCvtCategoryDTO |
| | | * @return |
| | | */ |
| | | R addComCvtCategory(ComCvtCategoryDTO comCvtCategoryDTO); |
| | | |
| | | |
| | | /** |
| | | * 编辑便民服务分类信息 |
| | | * @param comCvtCategoryDTO |
| | | * @return |
| | | */ |
| | | R putComCvtCategory(ComCvtCategoryDTO comCvtCategoryDTO); |
| | | |
| | | /** |
| | | * 查询便民服务分类详情 |
| | | * @return |
| | | */ |
| | | R getComCvtCategory(Long id); |
| | | |
| | | /** |
| | | * 删除便民服务分类信息 |
| | | * @return |
| | | */ |
| | | R deleteComCvtCategory(Long id); |
| | | |
| | | /** |
| | | * 查询便民服务所有分类 |
| | | * @return |
| | | */ |
| | | R allComCvtCategory(); |
| | | } |