From 179c4d64313c9b7572778da4aaaf6c6584fe457d Mon Sep 17 00:00:00 2001 From: mitao <2763622819@qq.com> Date: 星期二, 20 五月 2025 23:48:08 +0800 Subject: [PATCH] 修改文件上传类型限制 --- springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/ComMngStructHouseService.java | 59 ++++++++++++++++++++++++++++++++++++++++++++++++----------- 1 files changed, 48 insertions(+), 11 deletions(-) diff --git a/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/ComMngStructHouseService.java b/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/ComMngStructHouseService.java index 5927269..2377908 100644 --- a/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/ComMngStructHouseService.java +++ b/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/ComMngStructHouseService.java @@ -17,64 +17,101 @@ public interface ComMngStructHouseService extends IService<ComMngStructHouseDO> { /** * 房屋信息 - * @param userId 用户id + * + * @param userId + * 用户id * @return 房屋信息 */ R detailHouse(Long userId); + /** * 小区批量建房 - * @param batchhouseVO 建房参数 + * + * @param batchhouseVO + * 建房参数 * @return 建房结果 */ R batchHouse(BatchhouseVO batchhouseVO); /** * 新增小区地址 - * @param comMngStructAreaVO 小区地址 + * + * @param comMngStructAreaVO + * 小区地址 */ R addHouseArea(ComMngStructAreaVO comMngStructAreaVO); /** * 先删除小区小面所有房屋、删除用户和小区房屋的绑定关系 - * @param comMngStructAreaVO 小区地址编码 + * + * @param comMngStructAreaVO + * 小区地址编码 * @return 删除结果 */ R batchDeleteHouse(ComMngStructAreaVO comMngStructAreaVO); + /** * 展示下级建筑 - * @param houseCode 房屋编号 + * + * @param houseCode + * 房屋编号 * @return 下级建筑列表 */ R listSubordinatebuilding(String houseCode); + /** * 添加同级地址 - * @param batchhouseVO 添加参数 - * @param comMngStructAreaDO 小区信息-规则 + * + * @param batchhouseVO + * 添加参数 + * @param comMngStructAreaDO + * 小区信息-规则 * @return 添加结果 */ R addHouse(BatchhouseVO batchhouseVO, ComMngStructAreaDO comMngStructAreaDO); + /** * 编辑地址 - * @param comMngStructHouseVO 编辑内容 + * + * @param comMngStructHouseVO + * 编辑内容 * @return 编辑结果 */ R putHouse(ComMngStructHouseVO comMngStructHouseVO); + /** * 删除地址 - * @param comMngStructHouseVO 删除指定地址和所有下级 + * + * @param comMngStructHouseVO + * 删除指定地址和所有下级 * @return 删除结果 */ R deleteHouse(ComMngStructHouseVO comMngStructHouseVO); + /** * 房屋地址下拉列表 - * @param parentCode 父级编码 + * + * @param parentCode + * 父级编码 * @return 下级列表 */ R putVolunteerPhone(String parentCode); + /** * 新增房屋 - * @param comMngStructHouseVO 房屋信息 + * + * @param comMngStructHouseVO + * 房屋信息 * @return 新增结果 */ R addHouses(ComMngStructHouseVO comMngStructHouseVO); + + /** + * 导出小区房屋信息 + * + * @param areaId + * @return + */ + R houseExport(Long areaId); + } -- Gitblit v1.7.1