| | |
| | | import com.panzhihua.common.model.vos.community.*; |
| | | import com.panzhihua.common.model.vos.user.UserPhoneVO; |
| | | import org.springframework.cloud.openfeign.FeignClient; |
| | | import org.springframework.web.bind.annotation.GetMapping; |
| | | import org.springframework.web.bind.annotation.PostMapping; |
| | | import org.springframework.web.bind.annotation.RequestBody; |
| | | import org.springframework.web.bind.annotation.RequestParam; |
| | |
| | | */ |
| | | @PostMapping("indexdatacommunitybackstageechart") |
| | | R indexDataCommunityBackstageEchart(@RequestParam("communityId")Long communityId); |
| | | |
| | | /** |
| | | * 选择导入的小区 |
| | | * @param param 小区名字 模糊查询 |
| | | * @param communityId 社区id |
| | | * @return 小区集合 ComMngStructAreaVO |
| | | */ |
| | | @PostMapping("listareas") |
| | | R listAreas(@RequestParam("param")String param, @RequestParam("communityId")Long communityId); |
| | | |
| | | /** |
| | | * 检查小区是否已经批量设置过房屋并且返回小区房屋门号规则 |
| | | * @param id 小区id |
| | | * @return ComMngStructAreaVO |
| | | */ |
| | | @PostMapping("checkAreaHouse") |
| | | R checkAreaHouse(@RequestParam("id")Long id); |
| | | /** |
| | | * 新增留言 |
| | | * @param comActMessageVO 新增留言信息 |
| | | * @return 发布结果 |
| | | */ |
| | | @PostMapping("addmessage") |
| | | R addMessage(ComActMessageVO comActMessageVO); |
| | | /** |
| | | * 新增留言 |
| | | * @param comActMessageVO 新增留言信息 |
| | | * @return 发布结果 |
| | | */ |
| | | @GetMapping("pagemymessage") |
| | | R pageMyMessageApplets(ComActMessageVO comActMessageVO); |
| | | @GetMapping("pagemycommunitymessage") |
| | | R pageMyCommunityMessageApplets(ComActMessageVO comActMessageVO); |
| | | @GetMapping("pagesendtomemessage") |
| | | R pageSendToMessageApplets(ComActMessageVO comActMessageVO); |
| | | |
| | | |
| | | } |