123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101 |
- const basePart = '/simulation/resource/server';
- const addOrUpdateProject = basePart + '/simulationProject/addOrUpdateProject';
- const selectProjectById = basePart + '/simulationProject/selectProjectById';
- const selectDropDownByType = basePart + '/simulationProject/selectDropDownByType';
- const selectDropDownByTypeNew = basePart + '/simulationProject/selectDropDownByTypeNew';
- const selectMaxParallelism = basePart + '/simulationProject/selectMaxParallelism';
- const updateProjectNowRunState = basePart + '/simulationProject/updateProjectNowRunState';
- const selectProject = basePart + '/simulationProject/selectProject';
- const deleteProjectByids = basePart + '/simulationProject/deleteProjectByids';
- const exportProjectReportAndTaskFileById = basePart + '/simulationProject/exportProjectReportAndTaskFileById';
- const exportProjectTaskFileById = basePart + '/simulationProject/exportProjectTaskFileById';
- const selectProjectDetailsById = basePart + '/simulationProject/selectProjectDetailsById';
- const selectProjectTaskList = basePart + '/simulationProject/selectProjectTaskList';
- const selectProjectReportById = basePart + '/simulationProject/selectProjectReportById';
- const selectProjectTaskById = basePart + '/simulationProject/selectProjectTaskById';
- const exportProjectReportById = basePart + '/simulationProject/exportProjectReportById';
- const exportEvaluateReport = basePart + '/simulationProject/exportProjectEvaluationReportAndTaskFileById';
- const selectAutomaticProject = basePart + '/simulationProject/selectAutomaticProject';
- const addOrUpdateAutomaticProject = basePart + '/simulationProject/addOrUpdateAutomaticProject';
- const updateAutomaticRunState = basePart + '/simulationProject/updateAutomaticRunState';
- const selectAutomaticProjectById = basePart + '/simulationProject/selectAutomaticProjectById';
- const selectSubProjectInfo = basePart + '/simulationProject/selectSubProjectInfo';
- const selectSubProjectList = basePart + '/simulationProject/selectSubProjectList';
- const createAutomaticSubProject = basePart + '/simulationProject/createAutomaticSubProject';
- const deleteAutomaticProjectByids = basePart + '/simulationProject/deleteAutomaticProjectByids';
- const deleteAutomaticSubProjectByIds = basePart + '/simulationProject/deleteAutomaticSubProjectByIds';
- const updateAutoProjectNowRunState = basePart + '/simulationProject/updateAutoProjectNowRunState';
- const getEvaluationRuleDetail = basePart + '/simulationProject/getEvaluationRuleDetail';
- const querySceneEvaluationDetail = basePart + '/simulationProject/querySceneEvaluationDetail';
- const carList = basePart + '/simulationProject/selectDropDownByTypeNew';
- const mapList = basePart + '/simulationMap/selectAllSimulationMapList';
- const algorithmList = basePart + '/simulationProject/selectDropDownByTypeNew';
- const mapDetails = basePart + '/simulationMap/getSimulationMap';
- const sceneCarList = basePart + '/simulationProject/getMultiSimulationSceneCarList';
- const deleteRecord = basePart + '/simulationProject/deleteMultiSimulationSceneCar';
- const settingsSimulation = basePart + '/simulationProject/setMultiSimulationSceneCarView';
- const saveOrUpdateSceneCarList = basePart + '/simulationProject/addOrUpdateMultiSimulationSceneCarList';
- const getMultiSimulationSceneDetail = basePart + '/simulationProject/getMultiSimulationSceneDetail';
- const getMultiSimulationSceneStatus = basePart + '/simulationProject/updateMultiSimulationProjectSceneStatusRetry';
- const getStandardTestReport = basePart + '/simulationProject/getProjectReportForAllReferenceScene';
- const selectAllSimulationMageGroupList = basePart + '/simulationMageGroup/selectAllSimulationMageGroupList';
- const queryCoverOrExpose = basePart + '/simulationProject/selectProjectComputerRates'
- export default {
- addOrUpdateProject,
- selectProjectById,
- selectDropDownByType,
- selectDropDownByTypeNew,
- selectMaxParallelism,
- updateProjectNowRunState,
- selectProject,
- deleteProjectByids,
- exportProjectReportAndTaskFileById,
- exportProjectTaskFileById,
- carList,
- mapList,
- algorithmList,
- mapDetails,
- sceneCarList,
- deleteRecord,
- settingsSimulation,
- saveOrUpdateSceneCarList,
- getMultiSimulationSceneDetail,
- selectProjectDetailsById,
- selectProjectTaskList,
- selectProjectReportById,
- selectProjectTaskById,
- exportProjectReportById,
- exportEvaluateReport,
- selectAutomaticProject,
- addOrUpdateAutomaticProject,
- updateAutomaticRunState,
- selectAutomaticProjectById,
- selectSubProjectInfo,
- selectSubProjectList,
- createAutomaticSubProject,
- deleteAutomaticProjectByids,
- deleteAutomaticSubProjectByIds,
- updateAutoProjectNowRunState,
- getEvaluationRuleDetail,
- querySceneEvaluationDetail,
- getStandardTestReport,
- selectAllSimulationMageGroupList,
- getMultiSimulationSceneStatus,
- queryCoverOrExpose
- }
|