| | |
| | | String inspectorId;//巡检员ID |
| | | String content;//结果内容 |
| | | List<ImageRequest> images = new ArrayList<>(); |
| | | List<ImageRequest> videos = new ArrayList<>(); |
| | | String completeTime;//任务完成时间 |
| | | String lng; |
| | | String lat; |
| | |
| | | images.clear(); |
| | | for (UplodFileState data : states.values()) { |
| | | ImageRequest image = new ImageRequest(); |
| | | image.setWebPath(data.getWebPath()); |
| | | image.setFilePath(data.getUoloadFilePath()); |
| | | image.setId(data.getPostId()); |
| | | images.add(image); |
| | | image.setHash(data.getHash()); |
| | | if (data.getUploadType() == UplodFileState.IMG_TYPE) { |
| | | images.add(image); |
| | | } else { |
| | | videos.add(image); |
| | | } |
| | | |
| | | } |
| | | } |
| | | |