package com.fzzy.gateway.api;
|
|
|
import com.fzzy.gateway.data.BaseReqData;
|
import com.fzzy.gateway.data.BaseResp;
|
import com.fzzy.gateway.hx2023.data.*;
|
|
/**
|
* 网关设备同步接口,根据业务需求定义接口
|
*/
|
public interface GatewaySyncLprService {
|
|
/**
|
* 协议定义
|
*
|
* @return
|
*/
|
String getLprProtocol();
|
|
|
/**
|
* 车牌识别获取
|
*
|
* @return
|
*/
|
public BaseResp syncLpr(BaseReqData reqData);
|
|
|
/**
|
* 车牌识别获取
|
*
|
* @return
|
*/
|
public BaseResp initLpr(BaseReqData reqData);
|
|
}
|