This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
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;
}