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/OCREvidencePropertyDTO.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;
}