| | |
| | | * 查询气体管路产能负载统计列表 |
| | | */ |
| | | @Operation(summary = "查询气体管路产能负载统计列表", description = "分页查询") |
| | | @RequiresPermissions("apsGasPipingRouteStat:apsGasPipingRouteStat:list") |
| | | @RequiresPermissions("aps:apsGasPipingRouteStat:list") |
| | | @GetMapping("/list") |
| | | public TableDataInfo list(@RequestBody ApsGasPipingRouteStat apsGasPipingRouteStat) |
| | | { |
| | |
| | | * 导出气体管路产能负载统计列表 |
| | | */ |
| | | @Operation(summary = "导出气体管路产能负载统计列表", description = "导出") |
| | | @RequiresPermissions("apsGasPipingRouteStat:apsGasPipingRouteStat:export") |
| | | @RequiresPermissions("aps:apsGasPipingRouteStat:export") |
| | | @Log(title = "气体管路产能负载统计", businessType = BusinessType.EXPORT) |
| | | @PostMapping("/export") |
| | | public void export(HttpServletResponse response, ApsGasPipingRouteStat apsGasPipingRouteStat) |
| | |
| | | * 获取气体管路产能负载统计详细信息 |
| | | */ |
| | | @Operation(summary = "获取气体管路产能负载统计详细信息", description = "根据id获取") |
| | | @RequiresPermissions("apsGasPipingRouteStat:apsGasPipingRouteStat:query") |
| | | @RequiresPermissions("aps:apsGasPipingRouteStat:query") |
| | | @GetMapping(value = "/{id}") |
| | | public AjaxResult getInfo(@PathVariable("id") String id) |
| | | { |
| | |
| | | * 新增气体管路产能负载统计 |
| | | */ |
| | | @Operation(summary = "新增气体管路产能负载统计", description = "单个新增") |
| | | @RequiresPermissions("apsGasPipingRouteStat:apsGasPipingRouteStat:add") |
| | | @RequiresPermissions("aps:apsGasPipingRouteStat:add") |
| | | @Log(title = "气体管路产能负载统计", businessType = BusinessType.INSERT) |
| | | @PostMapping |
| | | public AjaxResult add(@RequestBody ApsGasPipingRouteStat apsGasPipingRouteStat) |
| | |
| | | * 修改气体管路产能负载统计 |
| | | */ |
| | | @Operation(summary = "修改气体管路产能负载统计", description = "单个修改") |
| | | @RequiresPermissions("apsGasPipingRouteStat:apsGasPipingRouteStat:edit") |
| | | @RequiresPermissions("aps:apsGasPipingRouteStat:edit") |
| | | @Log(title = "气体管路产能负载统计", businessType = BusinessType.UPDATE) |
| | | @PutMapping |
| | | public AjaxResult edit(@RequestBody ApsGasPipingRouteStat apsGasPipingRouteStat) |
| | |
| | | * 删除气体管路产能负载统计 |
| | | */ |
| | | @Operation(summary = "删除气体管路产能负载统计", description = "批量删除") |
| | | @RequiresPermissions("apsGasPipingRouteStat:apsGasPipingRouteStat:remove") |
| | | @RequiresPermissions("aps:apsGasPipingRouteStat:remove") |
| | | @Log(title = "气体管路产能负载统计", businessType = BusinessType.DELETE) |
| | | @DeleteMapping("/{ids}") |
| | | public AjaxResult remove(@PathVariable String[] ids) |
| | |
| | | } |
| | | |
| | | @Operation(summary = "计算气体管路产能负载统计", description = "计算") |
| | | @RequiresPermissions("aps:apsGasPipingRouteStat:computeCapacity") |
| | | @PostMapping("/computeCapacity") |
| | | public void computeCapacity() |
| | | { |
| | |
| | | } |
| | | |
| | | @Operation(summary = "获取气体管路产能负载统计", description = "计算") |
| | | @RequiresPermissions("aps:apsGasPipingRouteStat:getCapacityPlanData") |
| | | @PostMapping("/getCapacityPlanData") |
| | | public AjaxResult getCapacityPlanData(@RequestBody ApsGasPipingRouteStat apsGasPipingRouteStat) |
| | | { |
| | |
| | | } |
| | | |
| | | @Operation(summary = "导出气体管路产能负载统计Excel表", description = "导出") |
| | | @RequiresPermissions("aps:apsGasPipingRouteStat:exportExcel") |
| | | @PostMapping("/exportExcel") |
| | | public void exportExcel(ApsGasPipingRouteStat apsGasPipingRouteStat, HttpServletResponse response) |
| | | { |