service/carService.go
@@ -252,6 +252,12 @@ //1.目前有误识别的问题,会把D识别成0,D和0不分 //2.汉字误识别的几率比较高 func isMyPlateNo(plateNoM map[string]string, targetPlateNo string) bool { fmt.Println("targetPlateNO:", targetPlateNo) for ip,_ := range plateNoM { fmt.Println("my plateNos:", ip) } if targetPlateNo != "" { nctPlateNo := targetPlateNo[1:] if _,exist := plateNoM[nctPlateNo];exist {