captureCarRecordService.go 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. package service
  2. import (
  3. "iot_manager_service/app/device/dao"
  4. "iot_manager_service/app/operation/edge_service"
  5. "iot_manager_service/app/operation/model"
  6. "iot_manager_service/util/common"
  7. "strconv"
  8. )
  9. // CaptureCarRecordService 货车记录
  10. var CaptureCarRecordService = new(captureCarRecordService)
  11. type captureCarRecordService struct{}
  12. var (
  13. MediumTruckVType int = 26 //中型货车
  14. BigTruckVType int = 17 //大型货车
  15. )
  16. func (s captureCarRecordService) GetCarRecordCount(tenantId string, req model.RequestCarRecordCountFilter) (*model.ResponseCarRecordAll, error) {
  17. unit := dao.CaptureUnit{
  18. TenantId: tenantId,
  19. ID: req.CaptureId,
  20. }
  21. unit.GetDevice()
  22. var codes []string
  23. codes = append(codes, unit.CaptureSn)
  24. forCaptureIts := edge_service.ForCaptureIts{}
  25. vtypes := []int{MediumTruckVType, BigTruckVType}
  26. if req.CarModel == 1 {
  27. vtypes = []int{MediumTruckVType}
  28. } else if req.CarModel == 2 {
  29. vtypes = []int{BigTruckVType}
  30. }
  31. forData, err := forCaptureIts.Vehicleplate(
  32. edge_service.ForCaptureItsReq{
  33. Types: vtypes, //中型货车 大货车
  34. Codes: codes,
  35. Start: req.StartTime,
  36. End: req.EndTime,
  37. })
  38. if err != nil {
  39. return nil, err
  40. }
  41. var countTimes []string
  42. if req.QueryType == "month" {
  43. countTimes = common.GetTimeMonths(req.StartTime, req.EndTime) //时间范围 月
  44. } else {
  45. countTimes = common.GetTimeDays(req.StartTime, req.EndTime) //时间范围 天
  46. }
  47. data := make(map[string]int)
  48. for _, datum := range forData {
  49. key := string(datum.Time[:10])
  50. if req.QueryType == "month" {
  51. key = string(datum.Time[:7]) + "-01"
  52. }
  53. vtype := strconv.Itoa(datum.Vtype)
  54. data[key+vtype] += 1
  55. }
  56. var list []model.ResponseCarRecordCount
  57. var totalCountN, totalCountT int
  58. for _, countTime := range countTimes {
  59. key := countTime
  60. vtype26 := strconv.Itoa(MediumTruckVType)
  61. vtype17 := strconv.Itoa(BigTruckVType)
  62. list = append(list, model.ResponseCarRecordCount{
  63. NowDate: countTime,
  64. CountN: data[key+vtype17],
  65. CountT: data[key+vtype26],
  66. })
  67. totalCountN += data[key+vtype17]
  68. totalCountT += data[key+vtype26]
  69. }
  70. return &model.ResponseCarRecordAll{
  71. CarRecordCount: list,
  72. CarModelCount: model.ResponseCarModelCount{totalCountN, totalCountT},
  73. Details: forData,
  74. }, nil
  75. }