| | |
| | | |
| | | @GetMapping("/yw-condition/{id}") |
| | | @ApiOperation(value = "运维情况", notes = "运维情况") |
| | | public Result ywCondition(@PathVariable @Validated(Update.class) String id) { |
| | | public Result ywCondition(@PathVariable Integer id) { |
| | | return workOrderService.selectYwConditionByYwId(id); |
| | | } |
| | | |
| | | @GetMapping("/yw-condition-list/{id}") |
| | | @ApiOperation(value = "运维情况记录", notes = "运维情况记录") |
| | | public Result ywConditionList(@PathVariable @Validated(Update.class) String id) { |
| | | return workOrderService.selectYwConditionListByYwId(id); |
| | | } |
| | | |
| | | @GetMapping("/yw-auditing-list/{id}") |