| | |
| | | @ApiImplicitParam(value = "列表数据id,多个逗号分隔", name = "ids", dataType = "String"), |
| | | @ApiImplicitParam(value = "状态(1=待执行,2=进行中,3=成功,4=失败)", name = "status", dataType = "String"), |
| | | @ApiImplicitParam(value = "规则编号", name = "code", dataType = "String"), |
| | | @ApiImplicitParam(value = "任务类型", name = "type", dataType = "int"), |
| | | @ApiImplicitParam(value = "任务名称", name = "name", dataType = "String"), |
| | | @ApiImplicitParam(value = "系统审核状态(1=未执行,2=正常,3=异常)", name = "sysStatus", dataType = "int"), |
| | | }) |
| | | public void downloadTaskRecord(String ids, String code, String status,Integer sysStatus, HttpServletResponse response){ |
| | | public void downloadTaskRecord(String ids, String code, String status,Integer type, String name, Integer sysStatus,HttpServletResponse response){ |
| | | List<String> id = null; |
| | | if(ToolUtil.isNotEmpty(ids)){ |
| | | String[] split = ids.split(","); |
| | |
| | | .collect(Collectors.toList()); |
| | | |
| | | } |
| | | taskDetailService.downloadTaskRecord(id, code, statusList,sysStatus, response); |
| | | taskDetailService.downloadTaskRecord(id, code, statusList,sysStatus,type,name, response); |
| | | } |
| | | |
| | | |