| | |
| | | import org.springblade.core.tenant.mp.TenantEntity; |
| | | import org.springblade.core.tool.utils.StringUtil; |
| | | import org.springframework.util.StringUtils; |
| | | import org.sxkj.common.handler.GenericListTypeHandler; |
| | | import org.sxkj.common.utils.file.FileNameHarsher; |
| | | |
| | | import java.util.List; |
| | |
| | | /** |
| | | * ai类型 |
| | | */ |
| | | public static final Integer RESULT_TYPE_AI = 2; |
| | | public static final String RESULT_TYPE_AI = "2"; |
| | | /** |
| | | * 图片类型 |
| | | */ |
| | | public static final Integer RESULT_TYPE_IMG = 0; |
| | | public static final String RESULT_TYPE_IMG = "0"; |
| | | /** |
| | | * 视频类型(压缩) |
| | | */ |
| | | public static final Integer RESULT_TYPE_VEDIO_SHOW = 9; |
| | | public static final String RESULT_TYPE_VEDIO_SHOW = "9"; |
| | | /** |
| | | * 视频类型 |
| | | */ |
| | | public static final Integer RESULT_TYPE_VEDIO = 1; |
| | | public static final String RESULT_TYPE_VEDIO = "1"; |
| | | |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | |
| | | private String patrolTaskId; |
| | | |
| | | @ApiModelProperty(value = "附件类型: 1=巡查类文档,2=巡检类文档,3=安保类文档,4=文旅类文档,5=采集数据类文档") |
| | | private Integer resultType; |
| | | @TableField(typeHandler = GenericListTypeHandler.class) |
| | | private List<List<String>> resultType; |
| | | |
| | | @ApiModelProperty(value = "设备SN") |
| | | private String deviceSn; |