|
@ -26,6 +26,10 @@ public class PowerAxisStructViewController { |
|
|
|
|
|
|
|
|
/** |
|
|
/** |
|
|
* 关键指标统计 |
|
|
* 关键指标统计 |
|
|
|
|
|
* @param form |
|
|
|
|
|
* @return com.epmet.commons.tools.utils.Result |
|
|
|
|
|
* @author LZN |
|
|
|
|
|
* @date 2022/4/23 10:20 |
|
|
*/ |
|
|
*/ |
|
|
@PostMapping("/statistics") |
|
|
@PostMapping("/statistics") |
|
|
public Result getStatistics(@RequestBody PowerAxisStructViewFormDTO form){ |
|
|
public Result getStatistics(@RequestBody PowerAxisStructViewFormDTO form){ |
|
@ -35,6 +39,10 @@ public class PowerAxisStructViewController { |
|
|
|
|
|
|
|
|
/** |
|
|
/** |
|
|
* 动力主轴负责人详细信息 |
|
|
* 动力主轴负责人详细信息 |
|
|
|
|
|
* @param form |
|
|
|
|
|
* @return com.epmet.commons.tools.utils.Result |
|
|
|
|
|
* @author LZN |
|
|
|
|
|
* @date 2022/4/23 10:20 |
|
|
*/ |
|
|
*/ |
|
|
@PostMapping("/leader") |
|
|
@PostMapping("/leader") |
|
|
public Result getLeaderDetail(@RequestBody PowerAxisLeaderDetailFormDTO form){ |
|
|
public Result getLeaderDetail(@RequestBody PowerAxisLeaderDetailFormDTO form){ |
|
@ -43,7 +51,11 @@ public class PowerAxisStructViewController { |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
/** |
|
|
/** |
|
|
*动力主轴结构树 |
|
|
* 动力主轴结构树 |
|
|
|
|
|
* @param form |
|
|
|
|
|
* @return com.epmet.commons.tools.utils.Result |
|
|
|
|
|
* @author LZN |
|
|
|
|
|
* @date 2022/4/23 10:20 |
|
|
*/ |
|
|
*/ |
|
|
@PostMapping("/structTree") |
|
|
@PostMapping("/structTree") |
|
|
public Result getStructTree(@RequestBody PowerAxisStructStructTreeFormDTO form){ |
|
|
public Result getStructTree(@RequestBody PowerAxisStructStructTreeFormDTO form){ |
|
@ -51,6 +63,13 @@ public class PowerAxisStructViewController { |
|
|
return new Result().ok(dto); |
|
|
return new Result().ok(dto); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
|
* 动力主轴节点坐标集合 |
|
|
|
|
|
* @param structLevel |
|
|
|
|
|
* @return com.epmet.plugin.power.dto.axis.ResultDTO |
|
|
|
|
|
* @author LZN |
|
|
|
|
|
* @date 2022/4/23 10:19 |
|
|
|
|
|
*/ |
|
|
@PostMapping("/{structLevel}/listPosition") |
|
|
@PostMapping("/{structLevel}/listPosition") |
|
|
public ResultDTO getListPosition(@PathVariable int structLevel){ |
|
|
public ResultDTO getListPosition(@PathVariable int structLevel){ |
|
|
List<PowerAxisListPositionResultDTO> list = powerAxisStructService.getListPosition(structLevel); |
|
|
List<PowerAxisListPositionResultDTO> list = powerAxisStructService.getListPosition(structLevel); |
|
|