From 45e45ff70ba7cd7889f76cbf489d6bf012a4f84d Mon Sep 17 00:00:00 2001 From: hhhyyq <hhhyyq@163.com> Date: 星期三, 17 三月 2021 00:17:26 +0800 Subject: [PATCH] Merge remote-tracking branch 'origin/master' into master --- springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/ComCvtCategoryService.java | 53 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 53 insertions(+), 0 deletions(-) diff --git a/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/ComCvtCategoryService.java b/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/ComCvtCategoryService.java new file mode 100644 index 0000000..3b27718 --- /dev/null +++ b/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/ComCvtCategoryService.java @@ -0,0 +1,53 @@ +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(); +} -- Gitblit v1.7.1