Files
klp-oa/klp-wms/src/main/java/com/klp/domain/vo/ImageRecognitionVo.java
2025-08-02 16:40:16 +08:00

53 lines
826 B
Java
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package com.klp.domain.vo;
import lombok.Data;
import java.io.Serializable;
import java.util.List;
import java.util.Map;
/**
* 图片识别结果视图对象
*
* @author klp
* @date 2025-01-27
*/
@Data
public class ImageRecognitionVo implements Serializable {
private static final long serialVersionUID = 1L;
/**
* 图片URL
*/
private String imageUrl;
/**
* 识别类型
*/
private String recognitionType;
/**
* 识别结果属性列表
*/
private List<AttributeVo> attributes;
/**
* 识别状态success-成功failed-失败processing-处理中
*/
private String status;
/**
* 错误信息
*/
private String errorMessage;
/**
* 处理时间(毫秒)
*/
private Long processingTime;
}