|
|
@ -2,6 +2,8 @@ package a8k.extui.page.extapp.profession_test; |
|
|
|
|
|
|
|
|
|
|
|
import a8k.app.engineer.service.qatest.ExperimentConsistencyTestingService; |
|
|
|
import a8k.app.engineer.service.state.EngineerModeStateMgrService; |
|
|
|
import a8k.app.engineer.service.type.EngineerModeState; |
|
|
|
import a8k.app.engineer.service.type.TubeExConfig; |
|
|
|
import a8k.app.engineer.service.type.TubeHolderExConfig; |
|
|
|
import a8k.app.type.exception.AppException; |
|
|
@ -20,6 +22,8 @@ public class ExperimentConsistencyTestingPage { |
|
|
|
|
|
|
|
private final ExtApiPageMgr extApiPageMgr; |
|
|
|
private final ExperimentConsistencyTestingService experimentConsistencyTestingService; |
|
|
|
private final EngineerModeStateMgrService engineerModeStateMgrService; |
|
|
|
|
|
|
|
|
|
|
|
@ExtApiStatu(name = "", group = "试管1", order = 1) |
|
|
|
public TubeExConfig getTubeExConfig1() { |
|
|
@ -71,6 +75,11 @@ public class ExperimentConsistencyTestingPage { |
|
|
|
return experimentConsistencyTestingService.getTubeExConfig().tubeExConfigs.get(9); |
|
|
|
} |
|
|
|
|
|
|
|
@ExtApiStatu(name = "", group = "获取状态", order = 11) |
|
|
|
public EngineerModeState getState() { |
|
|
|
return engineerModeStateMgrService.getState(); |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
@PostConstruct |
|
|
|
void init() { |
|
|
|