| | |
| | | package cn.gistack.sm.schedulingModules.controller; |
| | | |
| | | import cn.gistack.sm.reportFlood.entity.ReportFloodRecord; |
| | | import cn.gistack.sm.schedulingModules.entity.SchedulingRecord; |
| | | import cn.gistack.sm.schedulingModules.service.ISchedulingRecordService; |
| | | import cn.gistack.sm.schedulingModules.vo.SchedulingRecordVO; |
| | |
| | | return R.data(schedulingRecordService.removeBatchByIds(Func.toLongList(ids))); |
| | | } |
| | | |
| | | /** |
| | | * 查询详情 |
| | | * @return |
| | | */ |
| | | @ApiOperation(value = "查询详情", notes = "查询详情") |
| | | @GetMapping(value = "/getDetail") |
| | | public R queryById(SchedulingRecordVO schedulingRecordVO) { |
| | | SchedulingRecordVO detail = schedulingRecordService.customizeGetDetail(schedulingRecordVO); |
| | | return R.data(detail); |
| | | } |
| | | |
| | | } |