重新修改提示词和返回值

This commit is contained in:
2025-08-02 15:13:09 +08:00
parent 43546d56a9
commit dd6c84e67f
4 changed files with 122 additions and 15 deletions

View File

@@ -49,6 +49,11 @@ public class ImageRecognitionVo implements Serializable {
*/
private List<BomItemVo> bomItems;
/**
* 识别结果属性列表
*/
private List<AttributeVo> attributes;
/**
* 识别置信度
*/
@@ -110,4 +115,20 @@ public class ImageRecognitionVo implements Serializable {
*/
private String remark;
}
/**
* 属性信息
*/
@Data
public static class AttributeVo {
/**
* 属性名称
*/
private String attrKey;
/**
* 属性值
*/
private String attrValue;
}
}