You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
fu-hsi-service/src/main/java/com/supervision/police/dto/OCRResDTO.java

24 lines
542 B
Java

package com.supervision.police.dto;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
@Data
public class OCRResDTO {
@Schema(description = "文件id")
private String file_id;
@Schema(description = "图片id")
private String draw_img_id;
@Schema(description = "文件后缀")
private String ocr_text;
@Schema(description = "识别状态 0 成功 1正在识别 2识别失败")
private Integer status;
@Schema(description = "错误信息")
private String error_msg;
}