huanghongfa
2021-06-17 3ee15525efd4e1bb276a9b52d95e1f30a25bea8c
springcloud_k8s_panzhihuazhihuishequ/common/src/main/java/com/panzhihua/common/service/community/CommunityService.java
@@ -2997,4 +2997,23 @@
     */
    @GetMapping("/screen/work/workCount")
    R workCount(@RequestParam("communityId")Long communityId);
   /**
     * description 批量保存残疾人人员信息
     *
     * @param list 疾人信息列表
     * @return R  保存结果
     * @author manailin
     * @date 2021/6/10 17:00
     */
    @PostMapping("/disable_person/batch/save")
    R saveBatchDisabledPersons(@RequestBody List<DisabledPersonsDTO> list);
    /**
     * 获取社区网格
     * @param communityId   社区id
     * @return  网格数据
     */
    @GetMapping("/screen/getScreenGirds")
    R getScreenGirds(@RequestParam("communityId")Long communityId);
}