| | |
| | | @ApiOperation(value = "分页查询",response = ComActAcidRecordVO.class) |
| | | @PostMapping("queryAll") |
| | | public R selectAll(@RequestBody ComActAcidRecordDTO comActAcidRecordDTO) { |
| | | if(StringUtils.isNotEmpty(this.getLoginUserInfo().getRelationName())){ |
| | | comActAcidRecordDTO.setLocalCity(this.getLoginUserInfo().getRelationName()); |
| | | } |
| | | return this.communityService.selectAllComActAcidRecord(comActAcidRecordDTO); |
| | | } |
| | | |
| | |
| | | } |
| | | |
| | | /** |
| | | * 修改数据 |
| | | * |
| | | * @param comActAcidRecordVO 实体对象 |
| | | * @return 修改结果 |
| | | */ |
| | | @ApiOperation(value = "修改数据") |
| | | @PostMapping("/updateApplets") |
| | | public R updateApplets(@RequestBody ComActAcidRecordVO comActAcidRecordVO) { |
| | | return this.communityService.updateApplets(comActAcidRecordVO); |
| | | } |
| | | /** |
| | | * 删除数据 |
| | | * |
| | | * @param id 主键结合 |