123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- package com.shkpr.service.alambizplugin.dto;
- import lombok.Data;
- import org.locationtech.jts.geom.LineString;
- /**
- * 采集元素处理申请线
- *
- * @author 欧阳劲驰
- * @since 1.0.0
- */
- @Data
- public class GisSurveyLayerApplyLine {
- /**
- * 元素唯一编码
- */
- private String code;
- /**
- * 所属任务的唯一ID
- */
- private String jobId;
- /**
- * 元素类型标识符
- */
- private String layer;
- /**
- * 元素分类:point--点;line--线;face--面
- */
- private String kind;
- /**
- * 坐标值
- */
- private LineString gis;
- /**
- * 操作标记:add/update/delete
- */
- private String apply;
- /**
- * 数据来源:0--APP;1--Web;255--第三方导入
- */
- private Short source;
- /**
- * 线的起点唯一编码
- */
- private String upNode;
- /**
- * 线的终点唯一编码
- */
- private String downNode;
- }
|