12345678910111213141516171819202122232425262728293031323334 |
- 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 GisSurveySystemCheckSubtask {
- /**
- * 孤立点任务
- */
- private ListenableFuture<GisSurveySystemCheckResultDetail> isolatedPointsFuture;
- /**
- * 孤立线任务
- */
- private ListenableFuture<GisSurveySystemCheckResultDetail> IsolatedLinesFuture;
- /**
- * 重复点任务
- */
- private ListenableFuture<GisSurveySystemCheckResultDetail> duplicatePointsFuture;
- /**
- * 重叠线任务
- */
- private ListenableFuture<GisSurveySystemCheckResultDetail> overlapLinesFuture;
- }
|