| | |
| | | @PostMapping("/page") |
| | | public R page(@RequestBody ComEventPageRequestVO comEventPageRequestVO) { |
| | | ComEventVO comEventVO = CopyUtil.copyProperties(comEventPageRequestVO, ComEventVO.class); |
| | | comEventPageRequestVO.setCreateBy(getUserId()); |
| | | return comEventService.page(comEventVO, comEventVO.getPageNo(), comEventVO.getPageSize()); |
| | | } |
| | | |
| | |
| | | /**当前机构下处理人ID*/ |
| | | @ApiModelProperty(name = "currentProcessUserId", value = "当前机构下处理人ID") |
| | | private Long currentProcessUserId; |
| | | |
| | | private Long createBy; |
| | | private Long pageNo; |
| | | private Long pageSize; |
| | | private String keyword; |
| | |
| | | <where> |
| | | event_process_status !=9 |
| | | <if test="comEvent.keyword != null and comEvent.keyword!=''" > |
| | | and ( order_sn = #{comEvent.keyword} or request_user_tel =#{comEvent.keyword} or current_org_name=#{comEvent.keyword}) |
| | | AND ( order_sn = #{comEvent.keyword} or request_user_tel =#{comEvent.keyword} or current_org_name=#{comEvent.keyword}) |
| | | </if> |
| | | <if test="comEvent.createBy != null and comEvent.createBy!=''" > |
| | | AND create_by = #{comEvent.createBy} |
| | | </if> |
| | | <if test="comEvent.eventCategory != null"> |
| | | AND event_category = #{comEvent.eventCategory} |