| | |
| | | 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 io.swagger.annotations.ApiOperation; |
| | | import org.springframework.cloud.openfeign.FeignClient; |
| | | import org.springframework.web.bind.annotation.*; |
| | | |
| | |
| | | * @return 详情 |
| | | */ |
| | | @PostMapping("detailactivity") |
| | | R detailActivity(@RequestParam("id") Long id, @RequestParam("userId") Long userId); |
| | | R detailActivity(@RequestParam("id") Long id, @RequestParam(value = "userId",required = false) Long userId); |
| | | |
| | | /** |
| | | * 分页活动报名名单 |
| | |
| | | * @return |
| | | */ |
| | | @PostMapping("/common/data/car/export") |
| | | R exportRealCar(ExportComMngCarExcelDTO exportComMngCarExcelDTO); |
| | | R exportRealCar(@RequestBody ExportComMngCarExcelDTO exportComMngCarExcelDTO); |
| | | |
| | | /** |
| | | * 社区后台实有单位管理列表 |
| | |
| | | */ |
| | | @PostMapping("/easyphoto/readUserReward") |
| | | R readUserReward(@RequestParam("userId") Long userId,@RequestParam("communityId") Long communityId); |
| | | |
| | | /** |
| | | * 分页查询巡查记录 |
| | | * @param comSwPatrolRecordPageDTO 查询参数 |
| | | * @return 分页集合 |
| | | */ |
| | | @PostMapping("/patrolRecord/page") |
| | | R pagePatrolRecord(@RequestBody ComSwPatrolRecordPageDTO comSwPatrolRecordPageDTO); |
| | | |
| | | /** |
| | | * 新增巡查记录 |
| | | * @param comSwPatrolRecordAddDTO 新增参数 |
| | | * @return 新增结果 |
| | | */ |
| | | @PostMapping("/patrolRecord/addPatrolRecord") |
| | | R addPatrolRecord(@RequestBody ComSwPatrolRecordAddDTO comSwPatrolRecordAddDTO); |
| | | } |