From c6512655e722d9ca80dd8c34b79f6d3923ecf86c Mon Sep 17 00:00:00 2001 From: 罗元桥 <2376770955@qq.com> Date: 星期二, 22 六月 2021 16:07:50 +0800 Subject: [PATCH] Merge branch 'test' into 'test_screen' --- springcloud_k8s_panzhihuazhihuishequ/common/src/main/java/com/panzhihua/common/service/community/CommunityService.java | 680 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 673 insertions(+), 7 deletions(-) diff --git a/springcloud_k8s_panzhihuazhihuishequ/common/src/main/java/com/panzhihua/common/service/community/CommunityService.java b/springcloud_k8s_panzhihuazhihuishequ/common/src/main/java/com/panzhihua/common/service/community/CommunityService.java index b6336fe..ed5a867 100644 --- a/springcloud_k8s_panzhihuazhihuishequ/common/src/main/java/com/panzhihua/common/service/community/CommunityService.java +++ b/springcloud_k8s_panzhihuazhihuishequ/common/src/main/java/com/panzhihua/common/service/community/CommunityService.java @@ -5,6 +5,18 @@ import com.panzhihua.common.model.dtos.advertisement.ComOpsAdvDTO; import com.panzhihua.common.model.dtos.advertisement.PageComOpsAdvDTO; import com.panzhihua.common.model.dtos.community.*; +import com.panzhihua.common.model.dtos.community.bigscreen.BigScreenEventDetailDTO; +import com.panzhihua.common.model.dtos.community.bigscreen.BigScreenStatisticAgeGenderDTO; +import com.panzhihua.common.model.dtos.community.bigscreen.BigScreenStatisticPartyActivityDTO; +import com.panzhihua.common.model.dtos.community.bigscreen.PageBigScreenStatisticPartyOrg; +import com.panzhihua.common.model.dtos.community.bigscreen.event.ScreenEventListDTO; +import com.panzhihua.common.model.dtos.community.bigscreen.work.ScreenActActivityListDTO; +import com.panzhihua.common.model.dtos.community.bigscreen.work.ScreenActActivityPeopleListDTO; +import com.panzhihua.common.model.dtos.community.bigscreen.work.ScreenDiscussListDTO; +import com.panzhihua.common.model.dtos.community.bigscreen.work.ScreenMicroListDTO; +import com.panzhihua.common.model.dtos.elders.ComEldersAuthGetResultDTO; +import com.panzhihua.common.model.dtos.elders.ComEldersAuthPageDTO; +import com.panzhihua.common.model.dtos.elders.ComEldersAuthUserAddAppDTO; import com.panzhihua.common.model.dtos.neighbor.*; import com.panzhihua.common.model.dtos.neighbor.*; import com.panzhihua.common.model.dtos.neighbor.ComActNeighborCircleAdminDTO; @@ -16,9 +28,13 @@ import com.panzhihua.common.model.dtos.shop.PageComShopGoodsDTO; import com.panzhihua.common.model.dtos.shop.PageComShopStoreDTO; import com.panzhihua.common.model.dtos.user.PageInputUserDTO; -import com.panzhihua.common.model.vos.R; -import com.panzhihua.common.model.vos.SystemmanagementConfigVO; +import com.panzhihua.common.model.dtos.vaccines.*; +import com.panzhihua.common.model.vos.*; import com.panzhihua.common.model.vos.community.*; +import com.panzhihua.common.model.vos.community.bigscreen.BigScreenStatisticAgeGender; +import com.panzhihua.common.model.vos.community.bigscreen.BigScreenStatisticPartyActivity; +import com.panzhihua.common.model.vos.community.bigscreen.BigScreenStatisticPartyBuild; +import com.panzhihua.common.model.vos.community.bigscreen.PartyBuildingMemberVO; import com.panzhihua.common.model.vos.community.questnaire.EditComActQuestnaireVo; import com.panzhihua.common.model.vos.community.questnaire.QuestnaireVO; import com.panzhihua.common.model.vos.community.questnaire.UsersAnswerQuestnaireVO; @@ -29,11 +45,13 @@ import com.panzhihua.common.model.vos.shop.ShopOperLogVO; import com.panzhihua.common.model.vos.shop.AddShopGoodsVO; import com.panzhihua.common.model.vos.shop.ShopStoreVO; +import com.panzhihua.common.model.vos.user.UserElectronicFileVO; import com.panzhihua.common.model.vos.user.UserPhoneVO; import org.springframework.cloud.openfeign.FeignClient; import org.springframework.transaction.annotation.Transactional; import org.springframework.web.bind.annotation.*; +import javax.validation.Valid; import java.util.List; /** @@ -189,6 +207,16 @@ */ @PostMapping("detaileasyphoto") R detailEasyPhoto(@RequestParam("id") Long id, @RequestParam("userId") Long userId); + + /** + * 随手拍删除 + * + * @param id 随手拍主键 + * @param userId 登录用户id + * @return 详情内容 + */ + @PostMapping("deleteEasyPhoto") + R deleteEasyPhoto(@RequestParam("id") Long id, @RequestParam("userId") Long userId); /** * 分页查询微心愿 @@ -758,7 +786,7 @@ * * @return */ - @PostMapping("timedtaskactmicrowishall") + @PostMapping("timedtaskactmicrowish") R timedTaskActMicroWishAll(); /** @@ -1175,7 +1203,7 @@ R deleteOpsHouse(@RequestParam("id") Long id); /** - * 一起议-分页查询 + * 房屋租售-分页查询 * * @param pageComOpsHouseDTO 查询参数 * @return ComOpsHouseVO @@ -1345,7 +1373,7 @@ * @param list 便民服务集合 */ @PostMapping("/convenient/serve/import") - R listSaveConvenientServeExcelVO(@RequestBody List<ComCvtServeExcelVO> list, @RequestParam("communityId") Long communityId); + R listSaveConvenientServeExcelVO(@RequestBody List<ComCvtServeExcelVO> list, @RequestParam(value = "communityId",required = false) Long communityId); /** * 导出房屋信息 @@ -2179,11 +2207,11 @@ /** * 编辑实有人口 - * @param editComMngPopulationVO + * @param populationEditDTO * @return */ @PostMapping("/common/data/population/edit") - R editPopulation(@RequestBody EditComMngPopulationVO editComMngPopulationVO, @RequestParam("communityId") Long communityId); + R editPopulation(@RequestBody ComMngPopulationEditDTO populationEditDTO, @RequestParam("communityId") Long communityId); /** * 微心愿删除 @@ -2395,6 +2423,22 @@ */ @PostMapping("/neighbor/changeCommentReplyStatusByAdmin") R changeCommentReplyStatusByAdmin(@RequestBody ChangeCommentReplyStatusByAdminVO changeStatusReplyVO); + /** + * 邻里圈取消点赞 + * @param fabulousAppDTO 请求参数 + * @return 取消点赞结果 + */ + @PostMapping("/neighbor/neighborFabulousCancelByApp") + R neighborFabulousCancelByApp(@RequestBody ComActNeighborFabulousAppDTO fabulousAppDTO); + + /** + * 添加邻里圈浏览记录 + * @param addBrowseAppDTO 请求参数 + * @return 返回参数 + */ + @PostMapping("/neighbor/neighborAddBrowseByApp") + R neighborAddBrowseByApp(@RequestBody ComActNeighborAddBrowseAppDTO addBrowseAppDTO); + /** * 邻里圈_添加 @@ -2403,4 +2447,626 @@ @PostMapping("/neighbor/addNeighborByAdmin") R addNeighborByAdmin(@RequestBody AddNeighborCircleAdminVO addNeighborCircleAdminVO); + /** + * 分页查询评论下所有回复 + * @param commentReplyAppDTO 请求参数 + * @return 回复列表 + */ + @PostMapping("/neighbor/neighborCommentReplyByApp") + R neighborCommentReplyByApp(@RequestBody ComActNeighborCommentReplyAppDTO commentReplyAppDTO); + + /** + * 实有房屋_编辑 + * @param villageId 实有房屋id + * @param comMngVillageVO 请求参数 + * @return + */ + @PostMapping("/editvillage/{villageId}") + R editvillage(@PathVariable("villageId") Long villageId,@RequestBody ComMngVillageVO comMngVillageVO); + + /** + * 商城系统配置 + * @param comShopSysConfDTO + * @return + */ + @PostMapping("/shop/conf/edit") + R editShopSysConf(@RequestBody ComShopSysConfDTO comShopSysConfDTO); + + /** + * 商城系统配置查询 + * @param pageComShopSysConfDTO + * @return + */ + @PostMapping("/shop/conf/get") + R pageShopSysConf(@RequestBody PageComShopSysConfDTO pageComShopSysConfDTO); + + /** + * 编辑实有人口_电子档案 + * @param userElectronicFileVO + * @return + */ + @PostMapping("/common/data/population/edit/electronicArchives") + R editUserElectronicFile(@RequestBody UserElectronicFileVO userElectronicFileVO); + + /** + * 实有人口统计 + * @param communityId 社区id + * @return 统计结果 + */ + @PostMapping("/common/data/population/statistics") + R getPopulationTotalByAdmin(@RequestParam("communityId") Long communityId); + + /** + * 查询房屋级联菜单 + * @param cascadeHouseDTO 请求参数 + * @return 菜单列表 + */ + @PostMapping("/common/data/population/cascade/list") + R getCascadeHouseAddress(@RequestBody CascadeHouseDTO cascadeHouseDTO); + + /** + * 分页查询房屋列表 + * @param populationHouseAdminDTO 请求参数 + * @return 房屋列表 + */ + @PostMapping("/common/data/population/page/house") + R pageHouse(@RequestBody ComMngPopulationHouseAdminDTO populationHouseAdminDTO); + + /** + * 根据id查询实有房屋信息 + * @param houseId 房屋id + * @return 房屋信息 + */ + @PostMapping("/common/data/population/house/detail") + R getHouseDetail(@RequestParam(value = "houseId") Long houseId); + + /** + * 编辑实有房屋信息 + * @param houseEditAdminDTO 请求参数 + * @return 编辑结果 + */ + @PostMapping("/common/data/population/house/edit") + R editHouse(@RequestBody ComMngPopulationHouseEditAdminDTO houseEditAdminDTO); + + /** + * 根据房屋id列表删除房屋信息 + * @param Ids 请求参数 + * @return 删除结果 + */ + @PostMapping("/common/data/population/house/delete") + R deleteHouses(@RequestBody List<Long> Ids); + + /** + * 实有房屋统计 + * @param communityId 社区id + * @return 统计结果 + */ + @PostMapping("/common/data/population/house/statistics") + R getHouseTotalByAdmin(@RequestParam("communityId") Long communityId); + + /** + * 根据社区id查询社区所有省市区 + * @param communityId 社区id + * @return 社区所在省市区 + */ + @PostMapping("/common/data/village/getRegion") + R getRegion(@RequestParam("communityId") Long communityId); + + /** + * 统计社区内小区数量 + * @param communityId 社区id + * @return 统计小区数量 + */ + @PostMapping("/common/data/village/statistics") + R villageStatistics(@RequestParam("communityId") Long communityId); + + /** + * 小区详情 + * @param villageId 小区id + * @return 小区详情 + */ + @PostMapping("/village/getVillage") + R getVillage(@RequestParam("villageId") Long villageId); + + /** + * 新增高龄认证 + * @param eldersAuthAddDTO + * @return 新增结果 + */ + @PostMapping("/eldersauth/add") + R add(@RequestBody EldersAuthAddDTO eldersAuthAddDTO); + + /** + * 修改高龄认证 + * @param eldersAuthEditDTO + * @return 维护结果 + */ + @PostMapping("/eldersauth/edit") + R edit(@RequestBody EldersAuthEditDTO eldersAuthEditDTO); + + /** + * 分页查找高龄认证 + * @param pageEldersAuthDTO + * @return 维护结果 + */ + @PostMapping("/eldersauth/page") + R query(@RequestBody PageEldersAuthDTO pageEldersAuthDTO); + + /** + * 删除高龄认证 + * @param eldersAuthDeleteDTO + * @return 平台用户信息 + */ + @PostMapping("/eldersauth/delete") + R delete(@RequestBody EldersAuthDeleteDTO eldersAuthDeleteDTO); + + /** + * 查询高龄认证详细信息 + * @param id 高龄认证 id + * @return 查找结果 + */ + @PostMapping("/eldersauth/{id}") + R<EldersAuthDetailsVO> eldersAuthDetails(@PathVariable("id") Long id); + + /** + * 获取用户家庭成员 + * @param userId 用户ID + * @return + */ + @PostMapping("/eldersauth/getMyfamilyElders/{userId}") + R getMyfamilyElders(@PathVariable("userId") Long userId); + + /** + * 查询导出高龄老人 + * @param pageEldersAuthDTO + * @return + */ + @PostMapping("/eldersauth/eldersAuthQuery") + R eldersAuthQuery(@RequestBody PageEldersAuthDTO pageEldersAuthDTO); + + /** + * 通过家庭成员ID添加 + * @param eldersAuthAddByFamilyDTO 添加信息 + * @return + */ + @PostMapping("/eldersauth/addByFamilyUser") + R addByFamilyUser(@RequestBody EldersAuthAddByFamilyDTO eldersAuthAddByFamilyDTO); + + + /** + * 添加高龄认证反馈 + * @param eldersAuthFeedbackAddDTO + * @return + */ + @PostMapping("/eldersauth/addFeedback") + R addFeedback(@RequestBody EldersAuthFeedbackAddDTO eldersAuthFeedbackAddDTO); + + /** + * 小程序-查询疫苗分类列表 + * @return 疫苗分类列表 + */ + @PostMapping("/vaccines/app/list") + R getVaccinesListByApp(); + + /** + * 小程序-疫苗类型对应家庭成员接种列表 + * @return 疫苗类型对应家庭成员接种列表 + */ + @PostMapping("/vaccines/app/user/list") + R getVaccinesUserListByApp(@RequestBody VaccinesEnrollUserByAppDTO enrollUserByAppDTO); + + /** + * 小程序-报名疫苗 + * @param enrollByAppDTO 请求参数 + * @return 报名结果 + */ + @PostMapping("/vaccines/app/enroll") + R VaccinesEnrollByApp(@RequestBody VaccinesEnrollByAppDTO enrollByAppDTO); + + /** + * 小程序-查询用户家庭成员接种记录 + * @param userId 用户id + * @return 用户家庭成员接种记录 + */ + @PostMapping("/vaccines/app/user/inoculation/list") + R getVaccinesUserInoculationListByApp(@RequestParam("userId") Long userId); + + /** + * 后台管理-查询疫苗分类列表 + * @param vaccinesByAdminDTO 请求参数 + * @return 疫苗分类列表 + */ + @PostMapping("/vaccines/admin/list") + R getVaccinesListByAdmin(@RequestBody VaccinesByAdminDTO vaccinesByAdminDTO); + + /** + * 修改疫苗分类信息 + * @param vaccinesByAdminDTO 请求参数 + * @return 修改结果 + */ + @PostMapping("/vaccines/admin/edit") + R editVaccinesByAdmin(@RequestBody VaccinesByAdminDTO vaccinesByAdminDTO); + + /** + * 新增疫苗分类信息 + * @param vaccinesByAdminDTO 请求参数 + * @return 新增结果 + */ + @PostMapping("/vaccines/admin/add") + R addVaccinesByAdmin(@RequestBody VaccinesByAdminDTO vaccinesByAdminDTO); + + /** + * 查询疫苗登记列表 + * @param vaccinesByAdminDTO 请求参数 + * @return 登记列表 + */ + @PostMapping("/vaccines/admin/enroll/list") + R getVaccinesEnrollListByAdmin(@RequestBody VaccinesEnrollByAdminDTO vaccinesByAdminDTO); + + /** + * 删除疫苗分类信息 + * @param id 疫苗分类id + * @return 删除结果 + */ + @PostMapping("/vaccines/admin/enroll/delete") + R deleteVaccinesByAdmin(@RequestParam("id") Long id); + + /** + * 根据条件导出登记列表 + * @param vaccinesByAdminDTO 请求参数 + * @return 登记列表 + */ + @PostMapping("/vaccines/admin/enroll/export") + R exportVaccinesEnrollListByAdmin(@RequestBody VaccinesEnrollByAdminDTO vaccinesByAdminDTO); + + /** + * 查询接种记录列表 + * @param inoculationByAdminDTO 请求参数 + * @return 接种记录列表 + */ + @PostMapping("/vaccines/admin/inoculation/list") + R getVaccinesInoculationListByAdmin(@RequestBody VaccinesInoculationByAdminDTO inoculationByAdminDTO); + + /** + * 接种记录信息导出 + * @param inoculationByAdminDTO 请求参数 + * @return 导出结果 + */ + @PostMapping("/vaccines/admin/inoculation/export") + R exportVaccinesInoculationListByAdmin(@RequestBody VaccinesInoculationByAdminDTO inoculationByAdminDTO); + + /** + * 查询疫苗分类列表 + * @return 疫苗分类列表 + */ + @PostMapping("/vaccines/admin/enroll/type/list") + R getEnrollTypeListByAdmin(); + + /** + * 查询老龄认证记录 + * @param pageComEldersRecordsDTO + * @return + */ + @PostMapping("/elders/records") + R queryEldersRecord(@RequestBody PageComEldersRecordsDTO pageComEldersRecordsDTO); + + /** + * 查询老龄认证记录详细 + * @param id + * @return + */ + @PostMapping("/elders/records/deatils") + R<ComEldersAuthElderlyDetailsVO> comEldersAuthElderlyDetails(@RequestParam("id") Long id); + + /** + * 查询老龄认证社区认证方式 + * @param eldersAuthTypeQueryDTO + * @return + */ + @PostMapping("/elders/authtype") + R communityElderAuthType(@RequestBody EldersAuthTypeQueryDTO eldersAuthTypeQueryDTO); + + /** + * 分页查询高领老人列表 + * @param pageEldersAuthElderlyDTO + * @return + */ + @PostMapping("/eldersauthelderly/page") + R pageQueryEldersAuthElderly(@RequestBody PageEldersAuthElderlyDTO pageEldersAuthElderlyDTO); + + /** + * 批量保存高龄老人 + * @param newVoList + * @param communityId + * @return + */ + @PostMapping("/eldersauthelderly/batchSave") + R listSaveEldersAuthElderlyExcelVO(@RequestBody List<EldersAuthElderlyExcelVO> newVoList,@RequestParam("communityId") Long communityId,@RequestParam("createBy") Long createBy); + + /** + * 批量保存楼栋 + * @param newVoList + * @param communityId + * @return + */ + @PostMapping("/building/batchSave") + R listSaveBuildingExcelVO(@RequestBody List<ComMngBuildingExcelVO> newVoList,@RequestParam("communityId") Long communityId); + + /** + * 根据字典key查询字典项 + * @param key + * @return + */ + @GetMapping("/dictionary/listDictionaryByKey") + R<List<BcDictionaryVO>> listDictionaryByKey(@RequestParam("key") String key); + /** + * 查看高龄老人详情 + * @param id + * @return + */ + @GetMapping("/eldersauthelderly/{id}") + R getEldersAuthElderlyById(@PathVariable("id") Long id); + + /** + * 修改高龄老人信息 + * @param eldersAuthElderlyDTO + * @return + */ + @PostMapping("/eldersauthelderly/update") + R updateEldersAuthElderly(@RequestBody EldersAuthElderlyDTO eldersAuthElderlyDTO); + + /** + * 删除高领老人 + * @param id + * @return + */ + @PostMapping("/eldersauthelderly/delete") + R deleteEldersAuthElderly(@RequestParam("id") Long id); + + /** + * 通过老人用户id获取老人信息 + * @param authUserId 老人用户id + * @return 老人信息 + */ + @PostMapping("/elders/getAuth") + R getEldersAuthUserByApp(@RequestParam("authUserId") Long authUserId); + + /** + * 人脸核验新增高龄认证记录 + * @param authGetResultDTO 请求参数 + * @return 新增结果 + */ + @PostMapping("/elders/add/auth") + R addEldersAuthByApp(@RequestBody ComEldersAuthGetResultDTO authGetResultDTO); + + /** + * 高龄认证分页接口 + * @param authPageDTO 请求参数 + * @return 查询结果 + */ + @PostMapping("/elders/page/auth") + R pageEldersByApp(@RequestBody ComEldersAuthPageDTO authPageDTO); + + /** + * 添加高龄老人接口 + * @param authUserAddAppDTO 请求参数 + * @return 添加结果 + */ + @PostMapping("/elders/add") + R addEldersByApp(@RequestBody ComEldersAuthUserAddAppDTO authUserAddAppDTO); + + /** + * 修改高龄老人接口 + * @param authUserAddAppDTO 请求参数 + * @return 修改结果 + */ + @PostMapping("/elders/edit") + R editEldersByApp(@RequestBody ComEldersAuthUserAddAppDTO authUserAddAppDTO); + + + /** + * 分页查询生存认证记录 + * @param pageEldersAuthElderlyDTO + * @return + */ + @PostMapping("/elders/records/page") + R pageQueryEldersAuthRecord(@RequestBody PageEldersAuthRecordDTO pageEldersAuthElderlyDTO); + /** + * description 批量保存重点人群人员信息 + * + * @param list 重点人群信息 + * @return R 保存结果 + * @author manailin + * @date 2021/6/10 17:00 + */ + @PostMapping("/key_person/batch/save") + R saveBatchKeyPerson(@RequestBody List<KeyPersonInfoDTO> list); + + @GetMapping("/screen/population/statistic") + R statistic(@RequestParam("communityId")Long communityId); + + /** + * + * @param communityId + * @param type + * @return + */ + @PostMapping("/elders/setCommunityAuthType") + R setCommunityAuthType(@RequestParam("communityId")Long communityId,@RequestParam("type") Integer type); + + @PostMapping("/elders/getAuthHistoryList") + R getAuthHistoryList(@RequestBody PageEldersAuthHistoryDTO pageEldersAuthElderlyDTO); + + @PostMapping("/elders/getAuthHistoryExport") + R getAuthHistoryExport(@RequestBody PageEldersAuthHistoryDTO pageEldersAuthElderlyDTO); + + @GetMapping("/screen/work/neighborCircle") + R statisticNeighborCircle(@RequestParam("communityId") Long communityId); + + + /** + * 党员党支部统计信息 + * @return + */ + @PostMapping("/bigscreen/party/orgmembers") + R bigscreenPartyOrgmembers(@RequestBody PageBigScreenStatisticPartyOrg pageBigScreenStatisticPartyOrg); + + /** + * 党员年龄占比、男女占比 + * @return + */ + @PostMapping("/bigscreen/party/ageGender") + R<BigScreenStatisticAgeGender> ageGender(@RequestBody BigScreenStatisticAgeGenderDTO bigScreenStatisticAgeGenderDTO); + + /** + * 党建数据概览 + * @return + */ + @PostMapping("/bigscreen/party/partybuild/{communityId}") + R<BigScreenStatisticPartyBuild> bigscreenPartybuild(@PathVariable("communityId") Long communityId); + + /** + * 党员活动参加用户排行榜-TOP3 + * @return + */ + @PostMapping("/bigscreen/party/activitytopuser/{communityId}") + R<List<PartyBuildingMemberVO>> bigscreenPartyactivitytopuser(@PathVariable("communityId") Long communityId); + + /** + * 党员活动 + * @return + */ + @PostMapping("/bigscreen/party/bigscreenPartyactivity") + R<List<BigScreenStatisticPartyActivity>> bigscreenPartyactivity(BigScreenStatisticPartyActivityDTO bigScreenStatisticPartyActivityDTO); + + /** + * 首页大屏统计接口 + * @param communityId 社区id + * @return 统计结果 + */ + @GetMapping("/screen/getScreenIndex") + R getScreenIndex(@RequestParam("communityId")Long communityId); + + /** + * 事件大屏统计接口 + * @param communityId 社区id + * @return 统计结果 + */ + @GetMapping("/screen/getScreenEvent") + R getScreenEvent(@RequestParam("communityId")Long communityId); + + /** + * 民生大屏统计接口 + * @param communityId 社区id + * @return 统计结果 + */ + @GetMapping("/screen/getScreenCivil") + R getScreenCivil(@RequestParam("communityId")Long communityId); + + /** + * 大屏统计邻里圈 + */ + @GetMapping("/screen/work/wish") + R wish(@RequestParam("communityId") Long communityId); + + /** + * 大屏统计社区-活动 + * @param communityId + * @return + */ + @GetMapping("/screen/work/activity") + R activity(@RequestParam("communityId") Long communityId); + + /** + * 大屏统计一起议 + * @param communityId + * @return + */ + @GetMapping("/screen/work/discuss") + R discuss(@RequestParam("communityId") Long communityId); + + /** + * 大屏统计党建工作 + * @param communityId + * @return + */ + @GetMapping("/screen/work/pbWork") + R pbWork(@RequestParam("communityId")Long communityId); + + + /** + * 大屏统计随手拍 + * @param communityId + * @return + */ + @GetMapping("/screen/work/easyPhoto") + R easyPhoto(@RequestParam("communityId")Long communityId); + + /** + * 大屏统计工作情况 + * @param communityId + * @return + */ + @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); + + /** + * 事件大屏查询事件详情 + * @param eventDetailDTO 请求参数 + * @return 事件详情 + */ + @PostMapping("/screen/getScreenEventDetail") + R getScreenEventDetail(@RequestBody BigScreenEventDetailDTO eventDetailDTO); + + /** + * 工作大屏-一起议列表 + * @param discussListDTO 请求参数 + * @return 一起议列表 + */ + @PostMapping("/screen/work/getScreenDiscussList") + R getScreenDiscussList(@RequestBody ScreenDiscussListDTO discussListDTO); + + /** + * 工作大屏-社区活动列表 + * @param actActivityListDTO 请求参数 + * @return 活动列表 + */ + @PostMapping("/screen/work/getScreenActActivityList") + R getScreenActActivityList(@RequestBody ScreenActActivityListDTO actActivityListDTO); + + /** + * 工作大屏-社区活动报名人员列表 + * @param activityPeopleListDTO 请求参数 + * @return 社区活动报名人员列表 + */ + @PostMapping("/screen/work/getActActivityPeopleList") + R getActActivityPeopleList(@RequestBody ScreenActActivityPeopleListDTO activityPeopleListDTO); + + /** + * 工作大屏-微心愿列表 + * @param microListDTO 请求参数 + * @return 微心愿列表 + */ + @PostMapping("/screen/work/getScreenMicroList") + R getScreenMicroList(@RequestBody ScreenMicroListDTO microListDTO); + } -- Gitblit v1.7.1