| | |
| | | @Override |
| | | public void doCmd(CmdEvent event, ICmdDataFlowContext cmdDataFlowContext, JSONObject reqJson) throws CmdException { |
| | | QuertAdvertDto quertAdvertDto = BeanConvertUtil.covertBean(reqJson, QuertAdvertDto.class); |
| | | if(quertAdvertDto.getStatus() != null && quertAdvertDto.getStatus() == 0){ |
| | | quertAdvertDto.setStatus(null); |
| | | } |
| | | ResultVo resultVo = smallProgramAdvertService.querySmallAdverts(quertAdvertDto); |
| | | ResponseEntity<String> responseEntity = new ResponseEntity<String>(resultVo.toString(), HttpStatus.OK); |
| | | cmdDataFlowContext.setResponseEntity(responseEntity); |