GisSurveyThirdImportSubtask.java 765 B

123456789101112131415161718192021222324252627282930
  1. package com.shkpr.service.alambizplugin.dto;
  2. import lombok.AllArgsConstructor;
  3. import lombok.Getter;
  4. import lombok.Setter;
  5. import org.springframework.util.concurrent.ListenableFuture;
  6. /**
  7. * 第三方导入子任务
  8. *
  9. * @author 欧阳劲驰
  10. * @since 0.0.1
  11. */
  12. @Getter
  13. @Setter
  14. @AllArgsConstructor
  15. public class GisSurveyThirdImportSubtask {
  16. /**
  17. * 无效属性任务
  18. */
  19. private ListenableFuture<? extends GisSurveyThirdImportResultDetail<?>> invalidPropertiesFuture;
  20. /**
  21. * 重复点号任务
  22. */
  23. private ListenableFuture<? extends GisSurveyThirdImportResultDetail<?>> duplicatePointsFuture;
  24. /**
  25. * 无效线任务
  26. */
  27. private ListenableFuture<? extends GisSurveyThirdImportResultDetail<?>> invalidLinesFuture;
  28. }