12345678910111213141516171819202122232425262728293031 |
- const basePart = '/simulation/resource/server';
- const addOrUpdateProject = basePart + '/simulationProject/addOrUpdateProject';
- const selectProjectById = basePart + '/simulationProject/selectProjectById';
- const selectDropDownByType = basePart + '/simulationProject/selectDropDownByType';
- const selectMaxParallelism = basePart + '/simulationProject/selectMaxParallelism';
- const updateProjectNowRunState = basePart + '/simulationProject/updateProjectNowRunState';
- const selectProject = basePart + '/simulationProject/selectProject';
- const deleteProjectByids = basePart + '/simulationProject/deleteProjectByids';
- const selectProjectDetailsById = basePart + '/simulationProject/selectProjectDetailsById';
- const selectProjectTaskList = basePart + '/simulationProject/selectProjectTaskList';
- const selectProjectReportById = basePart + '/simulationProject/selectProjectReportById';
- export default {
- addOrUpdateProject,
- selectProjectById,
- selectDropDownByType,
- selectMaxParallelism,
- updateProjectNowRunState,
- selectProject,
- deleteProjectByids,
- selectProjectDetailsById,
- selectProjectTaskList,
- selectProjectReportById
- }
|