| | |
| | | |
| | | import com.panzhihua.common.model.dtos.community.PageComMngVillageDTO; |
| | | import com.panzhihua.common.model.vos.R; |
| | | import com.panzhihua.common.model.vos.community.ComMngCarExcelVO; |
| | | import com.panzhihua.common.model.vos.community.ComMngVillageServeExcelVO; |
| | | import com.panzhihua.common.model.vos.community.ComMngVillageVO; |
| | | import com.panzhihua.service_community.service.ComMngVillageService; |
| | |
| | | return R.ok(r); |
| | | } |
| | | |
| | | |
| | | /** |
| | | * 社区后台导入实有房屋 |
| | | * @param list 数据 |
| | |
| | | return comMngVillageService.listSaveVillage(list,communityId); |
| | | } |
| | | |
| | | |
| | | /** |
| | | * 编辑实有房屋 |
| | | * @param villageId 动态id |
| | | * @return 删除结果 |
| | | */ |
| | | @PostMapping("editvillage/{villageId}") |
| | | @Transactional(rollbackFor = Exception.class) |
| | | public R editvillage(@PathVariable("villageId")Long villageId,@Valid @RequestBody ComMngVillageVO comMngVillageVO) { |
| | | return comMngVillageService.editVillage(villageId,comMngVillageVO); |
| | | } |
| | | } |