|
|
@ -83,4 +83,14 @@ public class SimulationAnalysisController {
|
|
|
|
public ResponseDTO getOeeZy(){
|
|
|
|
public ResponseDTO getOeeZy(){
|
|
|
|
return ResponseDTO.ok(simulationAnalysisService.getOeeZy());
|
|
|
|
return ResponseDTO.ok(simulationAnalysisService.getOeeZy());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
|
|
* 获取工序列表
|
|
|
|
|
|
|
|
* @param tableCode
|
|
|
|
|
|
|
|
* @return
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
@GetMapping("/get-process-list")
|
|
|
|
|
|
|
|
public ResponseDTO getProcessList(@RequestParam String tableCode){
|
|
|
|
|
|
|
|
return ResponseDTO.ok(simulationAnalysisService.getProcessList(tableCode));
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|