|
|
@ -96,9 +96,8 @@ public class PowerAxisLeaderController { |
|
|
|
* 查询节点负责人信息 |
|
|
|
*/ |
|
|
|
@PostMapping("/getLeaderDetail/{axisStructId}") |
|
|
|
public Result getLeaderDetail(@PathVariable String axisStructId) { |
|
|
|
PowerAxisSLeaderResultDTO dto = powerAxisStructLeaderService.queryLeaderDetailById(axisStructId); |
|
|
|
return new Result().ok(dto); |
|
|
|
public Result<PowerAxisSLeaderResultDTO> getLeaderDetail(@PathVariable String axisStructId) { |
|
|
|
return new Result().ok(powerAxisStructLeaderService.queryLeaderDetailById(axisStructId)); |
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
|