vince
2025-07-09 6495040bbda5308c86e852ad1b080097bfa916a9
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);
    }
}