| | |
| | | @ApiOperation(value = "分页",response = ComActWarehouseOperationVO.class) |
| | | @PostMapping("queryAll") |
| | | public R queryAll(@RequestBody CommonPage commonPage) { |
| | | commonPage.setCommunityId(this.getCommunityId()); |
| | | return this.communityService.comActWarehouseOperationSelectAll(commonPage); |
| | | } |
| | | |
| | |
| | | private String position; |
| | | @ApiModelProperty("参数id2") |
| | | private Integer paramId2; |
| | | @ApiModelProperty("社区id") |
| | | private Long communityId; |
| | | } |
| | |
| | | <if test="commonPage.paramId != null"> |
| | | and t.goods_id=#{commonPage.paramId} |
| | | </if> |
| | | <if test="commonPage.communityId !=null"> |
| | | and t1.community_id =#{communityId} |
| | | </if> |
| | | <if test="commonPage.keyword !=null and commonPage.keyword !=''"> |
| | | and t1.item like concat('%',#{commonPage.keyword},'%') |
| | | </if> |