package com.tairui.app.cim.dao.model;
|
|
|
import com.baomidou.mybatisplus.annotation.TableField;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import com.tairui.app.cim.util.MyGeometryHandler;
|
import com.vividsolutions.jts.geom.Geometry;
|
import lombok.Data;
|
import lombok.EqualsAndHashCode;
|
import lombok.experimental.Accessors;
|
|
|
@Data
|
@EqualsAndHashCode(callSuper = false)
|
@Accessors(chain = true)
|
@TableName("elevation_correction")
|
public class Elevation {
|
@TableField("gid")
|
@TableId
|
private long gid;
|
|
@TableField(typeHandler = MyGeometryHandler.class)
|
private String geom;
|
|
@TableField(exist=false)
|
private String gwkt;
|
//不在面内点处理
|
@TableField(exist=false)
|
private double cenx ;
|
@TableField(exist=false)
|
private double ceny ;
|
private String coor_z ;
|
private String name ;
|
private String floor_num ;
|
@TableField(exist=false)
|
private String high;
|
|
|
|
}
|