Browse Source

开发服务功能

dev-lhz
chenzhihang 1 year ago
parent
commit
14325471d4
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      ruoyi-modules/management-platform/src/main/java/com/ruoyi/platform/controller/service/ServiceController.java

+ 2
- 2
ruoyi-modules/management-platform/src/main/java/com/ruoyi/platform/controller/service/ServiceController.java View File

@@ -124,9 +124,9 @@ public class ServiceController extends BaseController {
// return genericsSuccess(serviceService.updateServiceVersion(serviceVersion));
// }

@GetMapping("/getServiceVersionLog/{id}")
@GetMapping("/getServiceVersionLog")
@ApiOperation("获取服务版本日志")
public GenericsAjaxResult<String> getServiceVersionLog(@PathVariable("id") Long id,
public GenericsAjaxResult<String> getServiceVersionLog(@RequestParam("id") Long id,
@RequestParam("start_time") String startTime, @RequestParam("end_time") String endTime) {
return genericsSuccess(serviceService.getServiceVersionLog(id, startTime, endTime));
}


Loading…
Cancel
Save