modelLibrary.js 3.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. const basePart = '/simulation/resource/server';
  2. const getVehicleList = basePart + '/vehicle/getVehicleList'; // 车辆模型查询列表
  3. const getVehicleInfo = basePart + '/vehicle/getVehicleInfo'; // 车辆模型查询详情
  4. const saveVehicle = basePart + '/vehicle/saveVehicle'; // 车辆模型保存修改详情
  5. const shareVehicle = basePart + '/vehicle/shareVehicle'; // 车辆模型分享详情
  6. const delVehicleById = basePart + '/vehicle/delVehicleById'; // 车辆模型删除详情
  7. const getCameraList = basePart + '/camera/getCameraList'; // 摄像头-列表查询
  8. const getCameraInfo = basePart + '/camera/getCameraInfo'; // 摄像头-详情查询
  9. const saveCamera = basePart + '/camera/saveCamera'; // 摄像头-保存修改
  10. const shareCamera = basePart + '/camera/shareCamera'; // 摄像头-分享
  11. const delCameraById = basePart + '/camera/delCameraById'; // 摄像头-删除
  12. const getOgtList = basePart + '/ogt/getOgtList'; // 完美传感器-列表查询
  13. const getOgtInfo = basePart + '/ogt/getOgtInfo'; // 完美传感器-详情查询
  14. const saveOgt = basePart + '/ogt/saveOgt'; // 完美传感器-保存修改
  15. const shareOgt = basePart + '/ogt/shareOgt'; // 完美传感器-分享
  16. const delOgtById = basePart + '/ogt/delOgtById'; // 完美传感器-删除
  17. const getLidarList = basePart + '/lidar/getLidarList'; // 激光雷达对象-列表查询
  18. const getLidarInfo = basePart + '/lidar/getLidarInfo'; // 激光雷达对象-详情查询
  19. const saveLidar = basePart + '/lidar/saveLidar'; // 激光雷达对象-保存修改
  20. const shareLidar = basePart + '/lidar/shareLidar'; // 激光雷达对象-分享
  21. const delLidarById = basePart + '/lidar/delLidarById'; // 激光雷达对象-删除
  22. const getGpsList = basePart + '/gps/getGpsList'; // GPS-列表查询
  23. const getGpsInfo = basePart + '/gps/getGpsInfo'; // GPS-详情查询
  24. const saveGps = basePart + '/gps/saveGps'; // GPS-保存修改
  25. const shareGps = basePart + '/gps/shareGps'; // GPS-分享
  26. const delGpsById = basePart + '/gps/delGpsById'; // GPS-删除
  27. const getConfigPageList = basePart + '/config/getConfigPageList'; // 车辆配置列表查询
  28. const getConfigInfo = basePart + '/config/getConfigInfo'; // 车辆配置详情查询
  29. const saveConfig = basePart + '/config/saveConfig'; //车辆配置新增修改
  30. const shareConfigByInfo = basePart + '/config/shareConfigByInfo'; // 车辆配置页面分享
  31. const shareConfigById = basePart + '/config/shareConfigById'; // 车辆配置列表分享
  32. const delConfigById = basePart + '/config/delConfigById'; // 车辆配置删除
  33. const getMyVehicleList = basePart + '/vehicle/getMyVehicleList'; // 车辆名称私有下拉列表
  34. const getMyCameraList = basePart + '/camera/getMyCameraList'; // 摄像头-私有列表查询
  35. const getMyOgtList = basePart + '/ogt/getMyOgtList'; // 完美传感器-私有列表查询
  36. const getMyLidarList = basePart + '/lidar/getMyLidarList'; // 激光雷达对象-私有列表查询
  37. const getMyGpsList = basePart + '/gps/getMyGpsList'; // GPS-私有列表查询
  38. export default {
  39. getVehicleList,
  40. getVehicleInfo,
  41. saveVehicle,
  42. shareVehicle,
  43. delVehicleById,
  44. getCameraList,
  45. getCameraInfo,
  46. saveCamera,
  47. shareCamera,
  48. delCameraById,
  49. getOgtList,
  50. getOgtInfo,
  51. saveOgt,
  52. shareOgt,
  53. delOgtById,
  54. getLidarList,
  55. getLidarInfo,
  56. saveLidar,
  57. shareLidar,
  58. delLidarById,
  59. getGpsList,
  60. getGpsInfo,
  61. saveGps,
  62. shareGps,
  63. delGpsById,
  64. getConfigPageList,
  65. getConfigInfo,
  66. saveConfig,
  67. shareConfigByInfo,
  68. shareConfigById,
  69. delConfigById,
  70. getMyVehicleList,
  71. getMyCameraList,
  72. getMyOgtList,
  73. getMyLidarList,
  74. getMyGpsList
  75. }