liuxiaolong
2020-08-18 0991b0e9533517687f09ded11f26490233ad2287
service/carService.go
@@ -252,9 +252,9 @@
//1.目前有误识别的问题,会把D识别成0,D和0不分
//2.汉字误识别的几率比较高
func isMyPlateNo(plateNoM map[string]string, targetPlateNo string) bool {
   if targetPlateNo == "京N34809"{
      fmt.Println("isMyPlateNo plateNoM:", plateNoM)
   }
   fmt.Println("isMyPlateNo plateNoM:", plateNoM, "targetPlateNO:", targetPlateNo)
   if targetPlateNo != "" {
      nctPlateNo := targetPlateNo[1:]
      if _,exist := plateNoM[nctPlateNo];exist {