123456789101112131415161718192021222324252627282930 |
- package com.shkpr.service.alambizplugin.dto;
- import lombok.AllArgsConstructor;
- import lombok.Getter;
- import lombok.Setter;
- import org.springframework.util.concurrent.ListenableFuture;
- /**
- * 第三方导入子任务
- *
- * @author 欧阳劲驰
- * @since 0.0.1
- */
- @Getter
- @Setter
- @AllArgsConstructor
- public class GisSurveyThirdImportSubtask {
- /**
- * 无效属性任务
- */
- private ListenableFuture<? extends GisSurveyThirdImportResultDetail<?>> invalidPropertiesFuture;
- /**
- * 重复点号任务
- */
- private ListenableFuture<? extends GisSurveyThirdImportResultDetail<?>> duplicatePointsFuture;
- /**
- * 无效线任务
- */
- private ListenableFuture<? extends GisSurveyThirdImportResultDetail<?>> invalidLinesFuture;
- }
|