vince
2024-07-03 69e8acc5dd1f760eb60e914472c151bfa8126a52
src/main/java/com/fzzy/protocol/sjLpr/GatewayLprApi.java
@@ -44,6 +44,8 @@
    public @ResponseBody
    String pushLpr(HttpServletRequest request, HttpServletResponse response,@RequestBody String str) {
        try {
            log.info("-----------车牌数据推送报文-------------");
            log.info(str);
           String carNumber =  doPost(request,response,str);
           pushLpr(carNumber);
        } catch (Exception e) {
@@ -253,4 +255,11 @@
        {
        }
    }
    public static void main(String[] args) {
       String str = "wRPsGQgdj4Z8ErBDIvLYiw==";
       String s = deCode(str);
       System.out.println(s);
    }
}