[add] 添加工控机延时监听接口

This commit is contained in:
liujing
2021-08-06 17:24:49 +08:00
parent 0a92d2de4e
commit a3e257d856

View File

@@ -0,0 +1,19 @@
package com.mogo.module.check.api;
/**
* @author liujing
* @description 描述
* @since: 8/6/21
*/
public interface ICheckListener {
/**
* 工控机->鹰眼定位数据延时
*/
void getAutoLocationTimeCallbackDelayed(long time);
/**
* 工控机->鹰眼识别数据延时
*/
void getAutoDataCallbackDelayed(long time);
}