jiazx0107@163.com
2023-11-07 b567aa30888d5d2e64f5c8a27d9b8e025b834ccc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
package com.fzzy.gateway.api;
 
 
import com.fzzy.gateway.hx2023.data.*;
 
/**
 * 网关设备同步接口,根据业务需求定义接口
 */
public interface GatewaySyncLprService {
 
    /**
     * 协议定义
     *
     * @return
     */
    String getLprProtocol();
 
 
    /**
     * 车牌识别获取
     *
     * @return
     */
    public LprData syncLpr(SyncReqData reqData);
 
}