From d9eee1919dbff7ffddc48b1f4fee2ec41a54a2a2 Mon Sep 17 00:00:00 2001 From: huanghongfa <18228131219@163.com> Date: 星期二, 05 一月 2021 18:19:52 +0800 Subject: [PATCH] 运营后台完成 --- springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/ComMngStructOtherBuildService.java | 44 ++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 44 insertions(+), 0 deletions(-) diff --git a/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/ComMngStructOtherBuildService.java b/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/ComMngStructOtherBuildService.java new file mode 100644 index 0000000..de1269c --- /dev/null +++ b/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/ComMngStructOtherBuildService.java @@ -0,0 +1,44 @@ +package com.panzhihua.service_community.service; + +import com.panzhihua.common.model.vos.R; +import com.panzhihua.common.model.vos.SystemmanagementConfigVO; +import com.panzhihua.common.model.vos.community.ComMngStructOtherBuildVO; + +/** + * @program: springcloud_k8s_panzhihuazhihuishequ + * @description: 其他建筑 + * @author: huang.hongfa weixin hhf9596 qq 959656820 + * @create: 2020-12-16 15:27 + **/ +public interface ComMngStructOtherBuildService { + /** + * 新增其他建筑 + * + * @param comMngStructOtherBuildVO 建筑参数 + * @return 新增结果 + */ + R addOtherbuild(ComMngStructOtherBuildVO comMngStructOtherBuildVO); + /** + * 查询所有建筑类型 + * @return 类型列表 + */ + R listBuildType(); + /** + * 分页查询 其他建筑 + * @param comMngStructOtherBuildVO 分页查询参数 + * @return 查询结果 + */ + R pageOtherBuild(ComMngStructOtherBuildVO comMngStructOtherBuildVO); + /** + * 建筑类型 + * @param communityId 社区id + * @return 建筑集合 + */ + R listComMngStructBuildType(Long communityId); + /** + * 增加删除建筑类型 + * @param systemmanagementConfigVO 操作内容 + * @return 操作结果 + */ + R putComMngStructBuildType(SystemmanagementConfigVO systemmanagementConfigVO); +} -- Gitblit v1.7.1