1234567891011121314151617181920212223242526272829303132333435 |
- package com.keystar.plane.inspection.bo;
- import lombok.Data;
- import java.net.Inet4Address;
- import java.util.List;
- /**
- * 接收图像识别的Mqtt信息
- **/
- @Data
- public class RecognizeMessageBo {
-
- /**
- * 阵列序号
- **/
- private String arrayIndex;
- /**
- * 行数
- **/
- private String rowIndex;
- /**
- * 列数
- **/
- private String columnIndex;
- /**
- * 识别的具体结果
- **/
- private ResultBo result;
- }
|