mirror of
https://codeup.aliyun.com/64f7d6b8ce01efaafef1e678/coal/coal.git
synced 2026-01-25 07:46:40 +08:00
完善
This commit is contained in:
@@ -1,8 +1,35 @@
|
||||
package cn.lihongjie.coal.ocr.dto;
|
||||
|
||||
import cn.lihongjie.coal.base.dto.CommonDto;
|
||||
import cn.lihongjie.coal.file.entity.FileEntity;
|
||||
|
||||
import jakarta.persistence.ManyToOne;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
import org.hibernate.annotations.Comment;
|
||||
|
||||
@Data
|
||||
public class OcrDto extends CommonDto {}
|
||||
public class OcrDto extends CommonDto {
|
||||
|
||||
|
||||
|
||||
|
||||
@ManyToOne
|
||||
private FileEntity file;
|
||||
|
||||
|
||||
@Comment("ocr类型")
|
||||
private String ocrType;
|
||||
|
||||
|
||||
@Comment("ocr结果")
|
||||
private String ocrResult;
|
||||
|
||||
@Comment("耗时")
|
||||
private Long costTime;
|
||||
|
||||
|
||||
@Comment("ak")
|
||||
private String ak;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user