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.
25 lines
520 B
Java
25 lines
520 B
Java
package com.supervision.police.dto;
|
|
|
|
import io.swagger.v3.oas.annotations.media.Schema;
|
|
import lombok.Data;
|
|
|
|
@Data
|
|
public class OCREvidencePropertyDTO {
|
|
|
|
@Schema(description = "案件证据id")
|
|
private String evidenceId;
|
|
|
|
@Schema(description = "文件id")
|
|
private String fileId;
|
|
|
|
@Schema(description = "属性名称")
|
|
private String propertyName;
|
|
|
|
@Schema(description = "属性值")
|
|
private String propertyValue;
|
|
|
|
@Schema(description = "预览图id")
|
|
private String drawImgId;
|
|
|
|
}
|