| | |
| | | import java.util.Date; |
| | | import java.util.List; |
| | | |
| | | import com.panzhihua.common.model.dtos.PageBaseDTO; |
| | | import com.panzhihua.common.model.dtos.*; |
| | | import com.panzhihua.common.model.dtos.community.*; |
| | | import com.panzhihua.common.model.dtos.community.acid.*; |
| | | import com.panzhihua.common.model.dtos.community.building.BuildingDto; |
| | | import com.panzhihua.common.model.dtos.community.convenient.*; |
| | | import com.panzhihua.common.model.dtos.community.dpc.AddDpcDTO; |
| | | import com.panzhihua.common.model.dtos.community.dpc.EditDpcDTO; |
| | |
| | | import com.panzhihua.common.model.vos.community.reserve.ComActReserveDangerAreaVO; |
| | | import com.panzhihua.common.model.vos.shop.AddShopFlowerGoodsVO; |
| | | import com.panzhihua.common.utlis.StringUtils; |
| | | import com.panzhihua.service_community.entity.VolunteerCommunityConfigVO; |
| | | import io.swagger.annotations.ApiOperation; |
| | | import io.swagger.annotations.ApiParam; |
| | | import org.springframework.cloud.openfeign.FeignClient; |
| | |
| | | import org.springframework.web.bind.annotation.RequestBody; |
| | | import org.springframework.web.bind.annotation.RequestParam; |
| | | |
| | | import com.panzhihua.common.model.dtos.AppletesBackstageConfigDTO; |
| | | import com.panzhihua.common.model.dtos.PageDTO; |
| | | import com.panzhihua.common.model.dtos.advertisement.ComOpsAdvDTO; |
| | | import com.panzhihua.common.model.dtos.advertisement.PageComOpsAdvDTO; |
| | | import com.panzhihua.common.model.dtos.civil.ComActSocialWorkerAddDTO; |
| | |
| | | import org.springframework.web.multipart.MultipartFile; |
| | | |
| | | import javax.annotation.Resource; |
| | | import javax.servlet.http.HttpServletResponse; |
| | | |
| | | /** |
| | | * @program: springcloud_k8s_panzhihuazhihuishequ |
| | |
| | | @GetMapping("/neighbor/getNeighborTopicByApp") |
| | | R getNeighborTopicByApp(@RequestParam("name") String name); |
| | | |
| | | @GetMapping("/neighbor/getNeighborTopicByAppNew") |
| | | R getNeighborTopicByAppNew(@RequestParam("name") String name); |
| | | /** |
| | | * 删除话题 |
| | | * @param id |
| | |
| | | * 单位活动统计 |
| | | */ |
| | | @GetMapping("/neighbor/activityAnalysis") |
| | | R institutionalUnitServiceAnalysis(@RequestParam(value = "year",required = false) Integer year,@RequestParam(value = "type",required = false) Integer type, |
| | | @RequestParam(value = "range",required = false)Integer range,@RequestParam(value = "communityId",required = false) Long communityId, |
| | | R institutionalUnitServiceAnalysis(@RequestParam(value = "year",required = false) Integer year, |
| | | @RequestParam(value = "type",required = false) Integer type, |
| | | @RequestParam(value = "range",required = false)Integer range, |
| | | @RequestParam(value = "communityId",required = false) Long communityId, |
| | | @RequestParam(value = "page",required = false) Integer page, |
| | | @RequestParam(value = "size",required = false) Integer size, |
| | | @RequestParam(value = "belongTo",required = false) String belongTo, |
| | | @RequestParam(value = "unitId",required = false) Long unitId,@RequestParam(value = "loginAccount",required = false) String loginAccount); |
| | | @RequestParam(value = "unitId",required = false) Long unitId, |
| | | @RequestParam(value = "loginAccount",required = false) String loginAccount, |
| | | @RequestParam(value = "searchContent",required = false) String searchContent); |
| | | |
| | | @GetMapping("/neighbor/export") |
| | | public List<ExcelDO> export(@RequestParam(value = "year",required = false) Integer year, |
| | | @RequestParam(value = "belongTo",required = false) String belongTo, |
| | | @RequestParam(value = "communityId",required = false) Long communityId); |
| | | |
| | | @GetMapping("/neighbor/partyExcel") |
| | | public List<PartyExcelDO> partyExcel(@RequestParam(value = "year",required = false) Integer year, |
| | | @RequestParam(value = "belongTo",required = false) String belongTo, |
| | | @RequestParam(value = "communityId",required = false) Long communityId, |
| | | @RequestParam(value = "unitId",required = false) Long unitId); |
| | | |
| | | /** |
| | | * 批量删除活动 |
| | | * @param ids |
| | |
| | | |
| | | |
| | | |
| | | /******************************************************************************************************************* |
| | | * |
| | | * |
| | | * 社区折扣 |
| | | * |
| | | * |
| | | ******************************************************************************************************************/ |
| | | |
| | | |
| | | /** |
| | | * 分页查询 |
| | | * @param |
| | | * @return |
| | | */ |
| | | @GetMapping("/VolunteerMerchant/community/discount/getList") |
| | | public R CommunityDiscountgetList(@RequestParam("communityId") String communityId); |
| | | |
| | | /** |
| | | * 新增 |
| | | * @param |
| | | * @return |
| | | */ |
| | | @PostMapping("/VolunteerMerchant/community/discount/insert") |
| | | public R CommunityDiscountinsert(@RequestBody VolunteerCommunityDiscountVO item); |
| | | |
| | | |
| | | @PostMapping("/VolunteerMerchant/community/discount/update") |
| | | public R CommunityDiscountupdate(@RequestBody VolunteerCommunityDiscountVO item); |
| | | |
| | | |
| | | @DeleteMapping("/VolunteerMerchant/community/discount/delete") |
| | | public R CommunityDiscountdelete(@RequestParam("id") String id); |
| | | |
| | | |
| | | |
| | | |
| | | /** |
| | | * 报名/取消报名社区活动 |
| | | * 金汇社区专用 |
| | | * @param signactivityVO |
| | | * 报名参数 |
| | | * @return 报名 取消报名 结果 |
| | | */ |
| | | @PostMapping("/jinhui/jinhuiSignActivity") |
| | | public R jinhuiSignActivity(@RequestBody SignactivityVO signactivityVO); |
| | | |
| | | |
| | | |
| | | /** |
| | | * 用户签到 |
| | | * 金汇社区专用 |
| | | * @param comActActRegistVO 签到参数 |
| | | * @return 签到结果 |
| | | */ |
| | | @PostMapping("/jinhui/jinhuiActivitySignIn") |
| | | public R jinhuiActivitySignIn(@RequestBody ComActActRegistVO comActActRegistVO); |
| | | |
| | | |
| | | |
| | | |
| | | @GetMapping("/integral/user/getIntegralUserRank") |
| | | public R getIntegralUserRank(@RequestParam("communityId") Long communityId, |
| | | @RequestParam("userId") Long userId); |
| | | |
| | | |
| | | @GetMapping("/largeScreen/panzhihuaMap") |
| | | public R panzhihuaMap(@RequestParam("areaCode")String areaCode); |
| | | |
| | | @GetMapping("/largeScreen/oneTagThreeReal") |
| | | public R oneTagThreeReal(@RequestParam("streetId") Long streetId); |
| | | |
| | | @PostMapping("/largeScreen/searchStreet") |
| | | public R searchStreet(@RequestBody BuildingDto buildingDto); |
| | | |
| | | @PostMapping("/largeScreen/huachengDyn") |
| | | public R huachengDyn(@RequestBody ComActDynVO comActDynVO); |
| | | |
| | | @GetMapping("/largeScreen/getScreenStatics") |
| | | public R getScreenStatics(); |
| | | |
| | | @GetMapping("/largeScreen/populationStatics") |
| | | public R populationStatics(@RequestParam("streetId") Long streetId); |
| | | |
| | | @GetMapping("/largeScreen/probably") |
| | | public R probably(@RequestParam("year") Integer year,@RequestParam("belongTo") String belongTo); |
| | | |
| | | } |