| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114 |
- package com.shkpr.service.alambizplugin.dto;
- import lombok.Data;
- import org.locationtech.jts.geom.Geometry;
- import java.util.List;
- /**
- * 采集元素处理申请表
- */
- @Data
- public class GisSurveyLayerApply {
- /**
- * 主键
- */
- private Long id;
- /**
- * 所属任务的唯一ID
- */
- private String jobId;
- /**
- * 元素唯一编码
- */
- private String code;
- /**
- * 元素类型标识符
- */
- private String layer;
- /**
- * 图层名称
- */
- private String name;
- /**
- * 元素分类:point--点;line--线;face--面
- */
- private String kind;
- /**
- * 坐标值
- */
- private Geometry gis;
- /**
- * 坐标采集方式
- */
- private String gisMode;
- /**
- * 操作标记:add/update/delete
- */
- private String apply;
- /**
- * 数据来源:0--APP;1--Web;255--第三方导入
- */
- private Short source;
- /**
- * 线的起点唯一编码
- */
- private String upNode;
- /**
- * 线的终点唯一编码
- */
- private String downNode;
- /**
- * 最近审核备注说明
- */
- private String checkNote;
- /**
- * 最近审核时间
- */
- private Long checkTime;
- /**
- * 最近审核人
- */
- private String checker;
- private Long lastTime;
- /**
- * 审核结果:-1--待审核;0--未通过;1--已通过
- */
- private Short pass;
- /**
- * 点的高程
- */
- private Double elevation;
- /**
- * 点的埋深
- */
- private Double depth;
- /**
- * 点的序号
- */
- private String no;
- /**
- * 属性值
- */
- private List<GisSurveyPropertyValue> propertyValues;
- }
|