| | |
| | | import com.panzhihua.common.model.dtos.partybuilding.*; |
| | | import com.panzhihua.common.model.vos.R; |
| | | import com.panzhihua.common.model.vos.community.ComActMicroWishVO; |
| | | import com.panzhihua.common.model.vos.community.building.NewFightConvenientMerchantVO; |
| | | import com.panzhihua.common.model.vos.community.building.NewFightShoppingVO; |
| | | import com.panzhihua.common.model.vos.user.SysTemplateConfigVO; |
| | | import com.panzhihua.common.model.vos.user.SysUserNoticeVO; |
| | | import com.panzhihua.common.service.community.CommunityService; |
| | |
| | | |
| | | @ApiOperation(value = "项目参与人员取消报名") |
| | | @DeleteMapping("/expurgateJoinData") |
| | | public R expurgateJoinData(@RequestParam("id") String id) |
| | | public R expurgateJoinData(@RequestParam(value = "id", required = false) String id, |
| | | @RequestParam(value = "projectId", required = false) String projectId, |
| | | @RequestParam(value = "userId", required = false) String userId) |
| | | { |
| | | return newStriveForFeign.expurgateJoinData(id); |
| | | return newStriveForFeign.expurgateJoinData(id,projectId,userId); |
| | | } |
| | | |
| | | |
| | |
| | | |
| | | /******************************************************************************************************************* |
| | | * |
| | | * |
| | | * 微心愿app |
| | | * |
| | | * ****************************************************************************************************************/ |
| | | |
| | |
| | | return newStriveForFeign.getResourceSharingDetails(id); |
| | | } |
| | | |
| | | |
| | | /******************************************************************************************************* |
| | | * |
| | | * 积分商城 |
| | | * |
| | | *******************************************************************************************************/ |
| | | @ApiOperation(value = "积分商品列表", response = NewFightShoppingVO.class) |
| | | @GetMapping("/getFightShoppingList") |
| | | public R getFightShoppingList(@RequestParam("pageNum") int pageNum, |
| | | @RequestParam("pageNum") int pageSize, |
| | | @RequestParam(value = "goodName", required = false)String goodName, |
| | | @RequestParam(value = "goodType", required = false)String goodType, |
| | | @RequestParam(value = "id", required = false)String id) |
| | | { |
| | | return newStriveForFeign.getFightShoppingList(pageNum,pageSize,getCommunityId()+"", |
| | | goodName,goodType,id); |
| | | } |
| | | |
| | | |
| | | @ApiOperation(value = "积分商品详情", response = NewFightShoppingVO.class) |
| | | @GetMapping("/getFightShoppingDetails") |
| | | public R getFightShoppingDetails(@RequestParam("id") String id) |
| | | { |
| | | return newStriveForFeign.getFightShoppingDetails(id); |
| | | } |
| | | |
| | | |
| | | /******************************************************************************************************* |
| | | * |
| | | * 商家模块 |
| | | * |
| | | * ********************************************************************************************************/ |
| | | |
| | | @ApiOperation(value = "商家列表", response = NewFightConvenientMerchantVO.class) |
| | | @GetMapping("/pageMerchant") |
| | | public R pageMerchant(@RequestParam("pageNum") int pageNum, |
| | | @RequestParam("pageSize") int pageSize, |
| | | @RequestParam(value = "keyword", required = false)String keyword) |
| | | { |
| | | return newStriveForFeign.pageMerchant(pageNum,pageSize,getCommunityId()+"","0", |
| | | keyword,"1"); |
| | | } |
| | | |
| | | /** |
| | | * 查询商家信息 |
| | | * |
| | | * @param merchantId |
| | | * @return |
| | | */ |
| | | @ApiOperation(value = "商家详情", response = NewFightConvenientMerchantVO.class) |
| | | @GetMapping("/selectMerchantById") |
| | | public R selectMerchantById(@RequestParam("merchantId") String merchantId) |
| | | { |
| | | return newStriveForFeign.selectMerchantById(merchantId); |
| | | } |
| | | |
| | | } |