br04_vehicleHardware2.js 1.4 KB

123456789101112131415161718192021222324252627282930313233
  1. 'use strict';
  2. module.exports = app => {
  3. const { router, controller } = app;
  4. // 车辆天窗时长占比分布 skyDuration
  5. // 近光使用时长占比分布 headlightDuration
  6. // 远光使用时长占比分布 highBeamDuration
  7. // 近光使用次数占比分布 headlightCnt
  8. // 远光使用次数占比分布 highBeamCnt
  9. router.get('/report/vehicleHardware/mix/:id', controller.vehicleHardwareController2.index);
  10. // 车辆天窗时长月年占比分布 skyDuration
  11. // 近光使用时长月年占比分布 headlightDuration
  12. // 远光使用时长月年占比分布 highBeamDuration
  13. // 近光使用次数月年占比分布 headlightCnt
  14. // 远光使用次数月年占比分布 highBeamCnt
  15. router.get('/report/vehicleHardware/mixMY/:id', controller.vehicleHardwareController2.mixMY);
  16. // 车辆天窗时长统计 skyDuration
  17. // 近光使用时长统计 headlightDuration
  18. // 远光使用时长统计 highBeamDuration
  19. // 近光使用次数统计 headlightCnt
  20. // 远光使用次数统计 highBeamCnt
  21. router.get('/report/vehicleHardware/count/:id', controller.vehicleHardwareController2.count);
  22. // 空调开启/关闭时长占比
  23. // 空调开启状态下压缩机开启/关闭时长占比
  24. // 空调开启状态下Auto开启/关闭时长占比
  25. // 各风量等级使用时长占比
  26. router.get('/report/vehicleHardware/air', controller.vehicleHardwareController2.air);
  27. };