RecognizeMessageBo.java 484 B

1234567891011121314151617181920212223242526272829303132333435
  1. package com.keystar.plane.inspection.bo;
  2. import lombok.Data;
  3. import java.net.Inet4Address;
  4. import java.util.List;
  5. /**
  6. * 接收图像识别的Mqtt信息
  7. **/
  8. @Data
  9. public class RecognizeMessageBo {
  10. /**
  11. * 阵列序号
  12. **/
  13. private String arrayIndex;
  14. /**
  15. * 行数
  16. **/
  17. private String rowIndex;
  18. /**
  19. * 列数
  20. **/
  21. private String columnIndex;
  22. /**
  23. * 识别的具体结果
  24. **/
  25. private ResultBo result;
  26. }