| | |
| | | * 查询管路手工气体预测数据列表 |
| | | */ |
| | | @Operation(summary = "查询管路手工气体预测数据列表", description = "分页查询") |
| | | // @RequiresPermissions("gasPipeline:prediction:list") |
| | | @RequiresPermissions("gasPipeline:prediction:list") |
| | | @GetMapping("/list") |
| | | public TableDataInfo list(ApsGasPipelinePrediction apsGasPipelineMo) |
| | | { |
| | |
| | | |
| | | @Operation(summary = "导入手工气体预测数据", description = "批量导入") |
| | | @Log(title = "导入手工气体预测数据", businessType = BusinessType.IMPORT) |
| | | // @RequiresPermissions("gasPipeline:mo:import") |
| | | @RequiresPermissions("gasPipeline:mo:import") |
| | | @PostMapping("/importData") |
| | | public AjaxResult importData(MultipartFile file) throws Exception { |
| | | |
| | |
| | | * 删除管路手工气体预测数据 |
| | | */ |
| | | @Operation(summary = "删除管路手工气体预测数据", description = "批量删除") |
| | | // @RequiresPermissions("gasPipeline:prediction:remove") |
| | | @RequiresPermissions("gasPipeline:prediction:remove") |
| | | @Log(title = "管路手工气体预测数据", businessType = BusinessType.DELETE) |
| | | @DeleteMapping("/{ids}") |
| | | public AjaxResult remove(@PathVariable Long[] ids) |